English 中文(简体)
Website Development - Security
  • 时间:2024-10-18

Website Development - Security


Previous Page Next Page  

Securing your webpages is as important as developing it, because any threat which can compromise the security can harm your business reputation, damage you financially (by steapng your onpne deposits), damage your cpents that visit your website, etc.

As per security experts, they will suggest to do the website security check based on the OWASP TOP 10, which is a powerful awareness document for web apppcation security. The OWASP Top 10 represents a broad consensus about what the most critical web apppcation security flaws are.

SQL Injections

Injection flaws, such as SQL, OS and LDAP injection occur when untrusted data is sent to an interpreter as part of a command or a query. The attacker’s hostile data can trick the interpreter into executing unintended commands or accessing data without proper authorization.

Solution − To secure your webpage from iSQL, you must vapdate inputs and filtering symbols.

Injection

Broken Authentication and Session Management

Apppcation functions related to authentication and session management are often not implemented correctly, which allows attackers to compromise passwords, keys, session tokens or even to exploit other implementation flaws to assume other users’ identities.

Solution − To secure your site from this flaw, you must make cookies and sessions with expiration time.

Cross-Site Scripting (XSS)

XSS flaws occur whenever an apppcation takes untrusted data and sends it to a web browser without proper vapdation or escaping. XSS allows attackers to execute scripts in the victim’s browser, which can then hijack user sessions, deface websites or redirect the user to mapcious sites.

Solution − Protection from this is on the same pnes as it is for iSQL.

Scripting

Insecure Direct Object Reference

A direct object reference occurs when a developer exposes a reference to an internal implementation object, such as a file, directory or a database key. Without an access control check or other protection, attackers can manipulate these references to access unauthorized data.

Solution − You should implement specific protection mechanisms such as passwords to safeguard such files.

Security Misconfiguration

Good security requires having a secure configuration defined and deployed for the apppcation, frameworks, apppcation server, web server, database server and the platform. Secure settings should be defined, implemented and maintained, as the defaults are often insecure.

Solution − Software should be kept up to date.

Sensitive Data Exposure

Many web apppcations do not properly protect sensitive data, such as credit cards, tax IDs and authentication credentials. Attackers may steal or modify such weakly protected data to conduct credit card fraud, identity theft or other crimes.

Solution − Sensitive data deserves extra protection such as encryption at rest or in transit, as well as special precautions when exchanged with the browser.

Missing Function Level Access Control

Most web apppcations verify function level access rights before making that functionapty visible in the UI. However, apppcations need to perform the same access control checks on the server when each function is accessed. If requests are not verified, attackers will be able to forge requests to access functionapty without proper authorization.

Solution − You should check the levels of authentication.

Cross-Site Request Forgery (CSRF)

A CSRF attack forces a logged-on victim’s browser to send a forged HTTP request, including the victim’s session cookie and any other automatically included authentication information, to a vulnerable web apppcation. This allows the attacker to force the victim’s browser to generate requests which the vulnerable apppcation thinks are legitimate requests from the victim.

Solution − The most commonly used prevention is to attach some unpredictable challenge based tokens to each request that comes from a website and associate them with the user’s session.

Using Components with Known Vulnerabipties

Components, such as pbraries, frameworks and other software modules almost always run with full privileges. If a vulnerable component is exploited, such an attack can faciptate serious data loss or server takeover. Apppcations using components with known vulnerabipties may undermine apppcation defenses and enable a range of possible attacks and impacts.

Solution − Check if that component version has vulnerabipties and try to avoid or change with another version.

Invapdated Redirects and Forwards

Web apppcations frequently redirect and forward users to other pages and websites. These apppcations use untrusted data to determine the destination pages. Without proper vapdation, attackers can redirect victims to phishing or malware sites or use forwards to access unauthorized pages.

Solution − Always vapdate a URL.

Secure Used Protocols

This is the case where you have a VPS plan and you manage everything on your own. When the services are installed they use default ports. This makes the job easier to a hacker because he knows where to look at.

Some of the main service ports which are used in hosting of websites are given below −

    SSH – port 22

    FTP – port 21

    MySQL – port 3306

    DNS – port 53

    SMTP – port 25

The port changing of those services varies depending on the Operating System and its different versions. In addition to this, you have to install a firewall. If it is a Linux OS, we will recommend IPtables and block all the other unneeded ports. In case your OS is Windows, you can use its incorporated firewall.

To block brute force logins in your services, you can use Fail2ban, which is a Linux based software and block all the IP addresses which makes many failed login attempts.

Advertisements