Tag: Script
82 procent websites kwetsbaar
by Alex on 15:54, under Diverse, Nieuws
Meer dan tachtig procent van de websites heeft te maken met één beveiligingslek en bij 61% zijn de kwetsbaarheden zo ernstig, dat ze niet meer aan de PCI-DSS standaard voldoen. Het onderzoek van WhiteHat Security liet naast het bekende feit dat veel websites lek zijn, ook zien dat de aanvallen steeds moeilijker te detecteren worden. Via encodering zijn zelfs eenvoudige vormen van SQL-injectie en cross-sites scripting (XSS) niet meer op te merken. (continue reading…)
Incredibly Simple Shell Programming
by Administrator on 21:12, under Tutorials
All to often the main complaint I have heard from people who have newly switched to Linux is the command line. Most complain that Linux MUST be an inferior OS because it relies much to heavily on the command line. You will also hear detractors of Linux say the same thing. They do not realize that in the command line lies true power, only once you have mastered the art of the command line, and the shell, can you truly begin to extract real power and flexibility from the machine. <br> If you are not familiar with the term ‘shell’ I will explain. The shell is your interface to the machine, it is how you interact and communicate with Linux. In DOS this is most often called a command interpreter, however the DOS command line and the Linux shell are only distant third cousins at best, the Linux shell blows away the DOS command line. In fact, the DOS command line under todays Windows OS is pretty much unusable except for very simple tasks (well its never been that great to begin with). Put simply, when you type in a command the shell interprets it and spits out a result. You can combine many of these commands into a file, <br>called a shell script, and execute them at once. This is called shell programming and is a powerful feature of Linux (and all Unix’s). You may also combine many of the commands on a single line in order to execute multiple statements at a time, <br> simply use plenty of ;’s to seperate the individual commands!