Project Php Source Code
- Ecommerce Project Php Source Code
- Online Shopping Project Php Source Code Free Download
- Php Project Source Code With Documentation
- Simple Php Projects
- C# Projects With Source Code
- Php Project Source Code With Database
Download PHP and MySQL Projects with source code, report, synopsis and documentation. Download Projects in PHP. Step-by-Step PHP Tutorials for Beginners - Creating your PHP program FROM SCRATCH: Basic Authentication, Membership and CRUD functionalities. This category consists of Php Projects for CSE final year students,1000 projects in PHP, PHP projects with source code free download,Final year PHP projects.
Is there a way to encrypt or enclose my code on my Linux server after deployment? I know Zend does some kind of encryption, right? Is that what people use? Is this even possible? How do I go about keeping my code secure online?
Gumbo3 Answers
You are right, you can use Zend Encoder, Ion Cube or something like Source Guardian to encrypt your source code.
Its not really needed unless you are giving away your code and dont want people to steal it though.
What is it about your server that you think its insecure?
472084472084- Periodically check the open ports on you server
- Do not trust the data coming from the browser - verify it and validate it.
- Periodically do an audit of the processes on your machine and who can access them
- Only have files in the document root that should be accessible by the outside world. Include files etc should not exist here
- Check the log files periodically to check for suspect access.
- For PHP errors/warnings - find a mechanism that does not give the client (browser) any info what has gone wrong. Send that to yourself. This is true for MySql as well.
If the file-system on your server has been compromised, then all is already lost. The best you can do is restrict folders, which are writable by web-server's user.
Also keep the application code outside the DOCUMENT_ROOT
. Publicly available should only be the file you actually intend to show user, or which would not show any sensitive informations: like an index.php file which contains and include ./app/bootstrap.php
.
You could use Zend Guard, but this would impact owner of the code. You might not be always the one maintaining it.
tereškotereško