| Source | Link |
|---|---|
| youngzsoft | www.youngzsoft.net/ccproxy/ |
#
# (C) Tenable Network Security, Inc.
#
include("compat.inc");
if(description)
{
script_id(15773);
script_version ("1.12");
script_name(english:"CCProxy Application Proxy Detection");
script_summary(english:"Detects CCProxy");
script_set_attribute(
attribute:"synopsis",
value:"The remote host is acting as an open proxy."
);
script_set_attribute( attribute:"description", value:
"The remote host is running CCProxy, an application proxy supporting
many protocols (Telnet, FTP, WWW, and more...).
An open proxy may allow users to impersonate the remote host when
connecting to the outside. It might also allow a spammer to use the
remote host as a relay.
Make sure the use of this program matches your corporate policy." );
script_set_attribute(
attribute:"see_also",
value:"http://www.youngzsoft.net/ccproxy/"
);
script_set_attribute(
attribute:"solution",
value:"Disable this software if it violates your corporate policy."
);
script_set_attribute(
attribute:"risk_factor",
value:"None"
);
script_set_attribute(attribute:"plugin_publication_date", value: "2004/11/20");
script_cvs_date("Date: 2019/11/22");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_set_attribute(attribute:"cpe", value:"cpe:/a:youngzsoft:ccproxy");
script_set_attribute(attribute:"asset_inventory", value:"True");
script_end_attributes();
script_category(ACT_GATHER_INFO);
script_family(english:"Firewalls");
script_copyright(english:"This script is Copyright (C) 2004-2019 and is owned by Tenable, Inc. or an Affiliate thereof.");
script_dependencie("find_service2.nasl");
if ( NASL_LEVEL >= 3000 ) script_require_ports("Services/ccproxy-telnet", "Services/ccproxy-ftp", "Services/ccproxy-smtp");
exit(0);
}
#
# The script code starts here
#
port = get_kb_item("Services/ccproxy-telnet");
if ( port )
{
soc = open_sock_tcp(port);
if ( soc )
{
r = recv_line(socket:soc, length:4096);
if ( "CCProxy" >< r ) {
security_note ( port );
exit(0);
}
close(soc);
}
}
port = get_kb_item("Services/ccproxy-ftp");
if ( port )
{
soc = open_sock_tcp(port);
if ( soc )
{
r = recv_line(socket:soc, length:4096);
if ( "CCProxy" >< r ) {
security_note ( port );
exit(0);
}
close(soc);
}
}
port = get_kb_item("Services/ccproxy-smtp");
if ( port )
{
soc = open_sock_tcp(port);
if ( soc )
{
r = recv_line(socket:soc, length:4096);
if ( "CCProxy" >< r ) {
security_note ( port );
exit(0);
}
close(soc);
}
}
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation