application – POFTUT

What Is Software?

What Is Software?

Software is some applications where it provides instructions to complete a specific job in a computer. Software is the most generic term used for computer applications, programs, scripts, tools, etc. Software History The first time software is proposed by Alan Turing in 1935 in his essay “Computable numbers with an application to the Entscheidungsproblem”. But … Read more

How To Register and Unregister Windows DLL Files with Regsrv32 Command

Dynamic Link Libraries provides helper libraries to the applications. Dynamic Link Libraries also called DLL. DLL’s provides reusable libraries, data and code which can be used by multiple applications or executables. In order to use system wide DLL’s easily we should register them. regsrv32 is a tool used to register DLL’s to the operating system. Syntax … Read more

How To Secure Windows From Malware and Unwanted Executables With Applocker?

Windows ecosystem generally works with 3 party applications easily while installing and running them. This creates some risk especially for the novice users. Windows administrators generally want to restrict users applications and executables to make their operating system more secure. Windows recently launched a feature named AppLocker . As its name suggests it simply restricts the … Read more

How To Start Applications From Command Line In Windows Different Ways?

Windows is very user friendly and GUI oriented operating system. Other operating systems like Unix, Linux, BSD came from non-GUI heritance and adopted the GUI experience in recent decade very good. In contrast Microsoft started to provide more productive command line support to use Windows operating systems features. One of the most used operation is … Read more

How To Prevent SQL Injection in Php Applications?

I have an application and I have complex requests tot the server. There are a lot of database operations. Managing them can become very hard some times. In this situation how can I prevent sql injection attacks to my application. Use Prepared Statements Prepared statements are the way to bind client-side provided values with database … Read more