Skip to content

CyberSecurity Institute

Security News Curated from across the world

Menu
Menu

Author: admini

Storm Lingers Over Cloud Movement

Posted on February 20, 2009December 30, 2021 by admini

Well, for one thing we can deduce that on the highest levels of IT management, security priorities still take precedence over the opportunity for cost-savings – since one of the biggest advantages promised by cloud computing is the ability to offload the expense of staffing and maintaining your own data centers. Simply put, organizations just aren’t yet willing to trust some cloud services provider with every element of IT systems management. If anything, the people surveyed know best how hard they’ve been working to keep an eye on their own stuff and obviously have to wonder if a service provider will care as much.

As far back as 2007, SaaS market leader Salesforce.com confirmed that malware and phishing attacks being aimed at its customers had resulted from an incident involving one of its employees who was themselves swept up in a phishing scam and exposed the hosted applications vendor’s own customer database.

On the flip side, if liability is transferred to the provider, the ongoing move to approach IT security strategy from the perspective of risk management could benefit cloud adoption. For, if a company can offload a good deal of its risk onto service providers, for things like electronic data breaches, it would seem like that might make sense, especially if courts will allow companies to pass off the blame on hosted services providers when security breaches inevitably occur.

http://securitywatch.eweek.com/phishing_and_fraud/storm_lingers_over_cloud_movement.html

Read more

Google’s Best practices against hacking

Posted on February 20, 2009December 30, 2021 by admini

There are many different types of attacks hackers can conduct in order to take partial or total control of a website. In general, the most common and dangerous ones are SQL injection and cross-site scripting (XSS).

SQL injection is a technique to inject a piece of malicious code in a web application, exploiting a security vulnerability at the database level to change its behavior. It is a really powerful technique, considering that it can manipulate URLs (query string) or any form (search, login, email registration) to inject malicious code. You can find some examples of SQL injection at the Web Application Security Consortium.

There are definitely some precautions that can be taken to avoid this kind of attack. For example, it’s a good practice to add a layer between a form on the front end and the database in the back end. In PHP, the PDO extension is often used to work with parameters (sometimes called placeholders or bind variables) instead of embedding user input in the statement. Another really easy technique is character escaping, where all the dangerous characters that can have a direct effect on the database structure are escaped. For instance, every occurrence of a single quote [‘] in a parameter must be replaced by two single quotes [”] to form a valid SQL string literal. These are only two of the most common actions you can take to improve the security of a site and avoid SQL injections. Online you can find many other specific resources that can fit your needs (programming languages, specific web applications …).

The other technique that we’re going to introduce here is cross-site scripting (XSS). XSS is a technique used to inject malicious code in a webpage, exploiting security vulnerabilities of web applications. This kind of attack is possible where the web application is processing data obtained through user input and without any further check or validation before returning it to the final user. You can find some examples of cross-site scripting at the Web Application Security Consortium.

There are many ways of securing a web application against this technique. Some easy actions that can be taken include:
Stripping the input that can be inserted in a form (for example, see the strip tags function in PHP);
Using data encoding to avoid direct injection of potentially malicious characters (for example, see the htmlspecialchars function in PHP);
Creating a layer between data input and the back end to avoid direct injection of code in the application.

SQL injection and cross-site scripting are only two of the many techniques used by hackers to attack and exploit innocent sites. As a general security guideline, it’s important to always stay updated on security issues and, in particular when using third party software, to make sure you’ve installed the latest available version. Many web applications are built around big communities, offering constant support and updates.
To give a few examples, four of the biggest communities of Open Source content management systems—Joomla, WordPress, PHP-Nuke, and Drupal—offer useful guidelines on security on their websites and host big community-driven forums where users can escalate issues and ask for support. For instance, in the Hardening WordPress section of its website, WordPress offers comprehensive documentation on how to strengthen the security of its CMS. Joomla offers many resources regarding security, in particular a Security Checklist with a comprehensive list of actions webmasters should take to improve the security of a website based on Joomla. On Drupal’s site, you can access information about security issues by going to their Security section. You can also subscribe to their security mailing list to be constantly updated on ongoing issues. PHP-Nuke offers some documentation about Security in chapter 23 of their How to section, dedicated to the system management of this CMS platform. They also have a section called Hacked – Now what? that offers guidelines to solve issues related to hacking.

Some ways to identify the hacking of your site
As mentioned above, there are many different types of attacks hackers can perform on a site, and there are different methods of exploiting an innocent site. When hackers are able to take complete control of a site, they can deface it (changing the homepage), erase all the content (dropping the tables of your database), or insert malware or cookie stealers. They can also exploit a site for spamming, such as by hiding links pointing to spammy resources or creating pages that redirect to malware sites. When these changes in your application are evident (like defacing), you can easily spot the hacking activity; but for other types of exploits, in particular those with spammy intent, it won’t be so obvious. Google, through some of its products, offers webmasters some ways of spotting if a site has been hacked or modified by a third party without permission. For example, by using Google Search you can spot typical keywords added by hackers to your website and identify the pages that have been compromised. Just open google.com and run a site: search query on your website, looking for commercial keywords that hackers commonly use for spammy purposes (such as viagra, porn, mp3, gambling, etc.):

[site:example.com viagra]

If you’re not already familiar with the site: search operator, it’s a way to query Google by restricting your search to a specific site. For example, the search site:googleblog.blogspot.com will only return results from the Official Google Blog. When adding spammy keywords to this type of query, Google will return all the indexed pages of your website that contain those spammy keywords and that are, with high probability, hacked. To check these suspicious pages, just open the cached version proposed by Google and you will be able to spot the hacked behavior, if any. You could then clean up your compromised pages and also check for any anomalies in the configuration files of your server (for example on Apache web servers: .htaccess and httpd.conf).
If your site doesn’t show up in Google’s search results anymore, it could mean that Google has already spotted bad practices on your site as a result of the hacking and may have temporarily removed it from our index, due to infringement of our webmaster quality guidelines.

In order to constantly keep an eye on the presence of suspicious keywords on your website, you could also use Google Alerts to monitor queries like:
site:example.com viagra OR casino OR porn OR ringtones

You will receive an email alert whenever these keywords are found in the content of your site.

You can also use Google’s Webmaster Tools to spot any hacking activity on your site. Webmaster Tools provide statistics about top search queries for your site. This data will help you to monitor if your site is ranking for suspicious unrelated spammy keywords. The ‘What Googlebot sees’ data is also useful, since you’ll see whether Google is detecting any unusual keywords on your site, regardless of whether you’re ranking for them or not.

If you have a Webmaster Tools account and Google believes that your site has been hacked, often you will be notified according to the type of exploit on your site:

If a malicious third party is using your site for spammy behaviors (such as hiding links or creating spammy pages) and it has been detected by our crawler, often you will be notified in the Message Center with detailed information (a sample of hacked URLs or anchor text of the hidden links);
If your site is exploited to place malicious software such as malware, you will see a malware warning on the ‘Overview’ page of your Webmaster Tools account.

Hacked behavior removed, now what?
Your site has been hacked or is serving malware? First, clean up the malware mess and then do one of the following:
-If your site was hacked for spammy purpose, please visit our reconsideration request page through Google’s Webmaster Tools to request reconsideration of your site;
-If your site was serving malware to users, please submit a malware review request on the ‘Overview’ page of Google’s Webmaster Tools.

http://googlewebmastercentral.blogspot.com/2009/02/best-practices-against-hacking.html

Read more

Gartner: Don’t assume SaaS is cheaper

Posted on February 19, 2009December 30, 2021 by admini

But data could be initially loaded to the SaaS application, then updated regularly or updated in real time using Web services.

In addition, Gartner said, businesses need to remember that SaaS applications can be customized and are no longer only for basic functions.

http://www.computerworld.com/action/article.do?command=viewArticleBasic&articleId=9128347&source=NLT_PM

Read more

SenSage Named Leader in Japanese Market for SIEM and Log Management

Posted on February 18, 2009December 30, 2021 by admini

“ITR sees that more vendors are entering the Japanese market with the growth in demand based on J-SOX compliance, and the competition becomes tighter…. Working together, we help customers reduce the costs and complexity associated with compliance auditing and security investigations, as well as monitoring privileged user activity and sensitive data use.”

The company has further evolved its technology to create advanced event data warehouse solutions, which are optimized for precise querying and correlation across complex event data sources to address new emerging use cases driving the need for a security data warehouse.

“Japan is a very large and competitive market, where product quality, ease of use, innovation and strong local relationships are highly valued,” said Jim Pflaging, president and chief executive officer of SenSage.

http://news.prnewswire.com/DisplayReleaseContent.aspx?ACCT=ind_focus.story&STORY=/www/story/02-18-2009/0004974583&EDATE=

Read more

Clear Guide on How to Benefit from ISO27001 in a Windows® Environment Now Available

Posted on February 18, 2009December 30, 2021 by admini

Information security management standard (ISMS) ISO/IEC 27001 encourages organisations to bring technical decision making about information security controls into a business-driven risk-based framework. This challenges all parties involved in information security management to communicate effectively, especially between technical and non-technical staff about effective security control implementation.

The guide’s author, Brian Honan, is widely recognised as an industry expert on information security and, in particular, on the ISO27001 information security standard.

A member of the Information Systems Security Association, the Irish Information Security Forum, and the Information Systems Audit and Control Association, Brian established Ireland’s first ever national Computer Security Incident Response Team.

“Written in non-technical language and in a style that makes its content accessible to non-technical ISO27001 project managers, Brian’s invaluable study will give IT security practitioners the information and knowledge they need,” says Alan Calder, Chief Executive of the book’s publishers, IT Governance.

IT Governance is ‘non-geek’, approaching IT issues from a non-technology background and talking to management in its own language.

http://www.emediawire.com/releases/2009/2/emw2084414.htm

Read more

Number of reported cyber incidents jumps

Posted on February 17, 2009December 30, 2021 by admini

The Federal Information Security Management Act requires agencies to report cyber incidents, which are defined as acts that violate computer security or acceptable-use policies.

Mischel Kwon, US-CERT’s director, said that the numbers represent both an increase in malware and improvements in the capabilities of US-CERT and agencies to detect and report cyber incidents. “Both parts of the story are true: There is an increase in mal events, and there is an increase in capabilities in order to detect those mal events.” Kwon added that the numbers were a bit deceiving because the reports are based on manual reporting by agencies and that there are few security operations centers that monitor federal agency networks.

US-CERT, the operational arm of DHS’ National Cyber Security Division, works to analyze and reduce threat capabilities throughout government and industry, disseminate warning information and coordinate incident response activities. US-CERT also runs Einstein, a federal network-monitoring system. It is in the process of deploying a second version of the system with enhanced capabilities.

Kwon added that visibility across the federal network and incident reporting will improve as the second version of Einstein is deployed and agencies continue to reduce the number of connections they have to Internet under the Trusted Internet Connection project.

http://fcw.com/Articles/2009/02/17/CERT-cyber-incidents.aspx

Read more

Posts navigation

  • Previous
  • 1
  • …
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • …
  • 421
  • Next

Recent Posts

  • AI/ML News – 2024-04-14
  • Incident Response and Security Operations -2024-04-14
  • CSO News – 2024-04-15
  • IT Security News – 2023-09-25
  • IT Security News – 2023-09-20

Archives

  • April 2024
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • April 2023
  • March 2023
  • February 2022
  • January 2022
  • December 2021
  • September 2020
  • October 2019
  • August 2019
  • July 2019
  • December 2018
  • April 2018
  • December 2016
  • September 2016
  • August 2016
  • July 2016
  • April 2015
  • March 2015
  • August 2014
  • March 2014
  • August 2013
  • July 2013
  • June 2013
  • May 2013
  • April 2013
  • March 2013
  • February 2013
  • January 2013
  • October 2012
  • September 2012
  • August 2012
  • February 2012
  • October 2011
  • August 2011
  • June 2011
  • May 2011
  • April 2011
  • February 2011
  • January 2011
  • December 2010
  • November 2010
  • October 2010
  • August 2010
  • July 2010
  • June 2010
  • May 2010
  • April 2010
  • March 2010
  • February 2010
  • January 2010
  • December 2009
  • November 2009
  • October 2009
  • September 2009
  • June 2009
  • May 2009
  • March 2009
  • February 2009
  • January 2009
  • December 2008
  • November 2008
  • October 2008
  • September 2008
  • August 2008
  • July 2008
  • June 2008
  • May 2008
  • April 2008
  • March 2008
  • February 2008
  • January 2008
  • December 2007
  • November 2007
  • October 2007
  • September 2007
  • August 2007
  • July 2007
  • June 2007
  • May 2007
  • April 2007
  • March 2007
  • February 2007
  • January 2007
  • December 2006
  • November 2006
  • October 2006
  • September 2006
  • August 2006
  • July 2006
  • June 2006
  • May 2006
  • April 2006
  • March 2006
  • February 2006
  • January 2006
  • December 2005
  • November 2005
  • October 2005
  • September 2005
  • August 2005
  • July 2005
  • June 2005
  • May 2005
  • April 2005
  • March 2005
  • February 2005
  • January 2005
  • December 2004
  • November 2004
  • October 2004
  • September 2004
  • August 2004
  • July 2004
  • June 2004
  • May 2004
  • April 2004
  • March 2004
  • February 2004
  • January 2004
  • December 2003
  • November 2003
  • October 2003
  • September 2003

Categories

  • AI-ML
  • Augment / Virtual Reality
  • Blogging
  • Cloud
  • DR/Crisis Response/Crisis Management
  • Editorial
  • Financial
  • Make You Smile
  • Malware
  • Mobility
  • Motor Industry
  • News
  • OTT Video
  • Pending Review
  • Personal
  • Product
  • Regulations
  • Secure
  • Security Industry News
  • Security Operations
  • Statistics
  • Threat Intel
  • Trends
  • Uncategorized
  • Warnings
  • WebSite News
  • Zero Trust

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
© 2025 CyberSecurity Institute | Powered by Superbs Personal Blog theme