Web Technology

As a developer this tool help me a lot – A free Git client for Windows and Mac

SourceTree is a popular Git GUI client developed by Atlassian. It provides a graphical interface for managing Git repositories, making it easier for developers to visualize and interact with their version control system. Here are some key features and aspects of SourceTree: 1. Repository Management: SourceTree allows you to create, clone, and manage Git repositories. …

As a developer this tool help me a lot – A free Git client for Windows and Mac Read More »

Share πŸ‘‡
global xss filtering in codeigniter

Global XSS Filtering In Codeigniter

What is XSS ?? Cross-site Scripting (XSS) is a client-side code injection attack. The attacker injects malicious scripts in our website by using a contact form or other any form. How to Prevent this This is another best feature of Codeigniter to prevent cross-site scripting enable $config[‘global_xss_filtering’] = TRUE; in the config.php file. It will …

Global XSS Filtering In Codeigniter Read More »

Share πŸ‘‡