Important things to do after installing Kali Linux
There are small set of important softwares that are required after installation of Kali Linux. Linux operating system is not too much user friendly but it is highly flexible...
Basic Linux Exploits: Moving towards exploits
Note: Hacking is not a joke so please keep patience and learn it step by step.
If you have read all our previous posts , you are ready to exploits the...
C Programming with files : Counting Character,Tabs, Spaces from files and writing on files
C Programming with files ( Reading and playing with characters of file)
After reading our previous post, you are now ready to play with C Programming with files . Let's start...
Exploit using shell code from command line
After reading our previous post:Exploiting buffer overflows using command line it's time to do Exploit Shell code using Command-line but I think you do want to clear your doubt...
How to use long long data type in C?
In order of size, starting with the smallest, the integer types are char, short,int, long and long long. The smaller types have the advantage of taking up less memory,...
Memory management in C Programming:Computer Memory
Memory management in C is one of the important topic as it's not only about memory management in c but also about Computer Memory Management. In this section you...
Basic Linux Exploits:Make your Pc more secure
Basic Linux Exploits:Make your Pc more secure and learn the basics of computer world
Why study Exploits?
Before learning exploits ,one should know about vulnerability.What does it means in the world...
Ten hilarious programmers facts that only programmers can understand
Programmers Facts
Computer programmers are smarter than normal people in term of computers and code. They always think and express their ideas in the terms of "0" and "1". Truly...
QuickBooks with Rails 5
QuickBooks with Rails 5: Today, we will learn how to integrate Quickbooks into our new or existing Rails 5 application.
QuickBooks:
QuickBooks is a small accounting Software package develop by Intuit. Quickbooks...
Ruby Tutorial : Step By Step Learning Ruby Programming Language
Prerequisites for Ruby Tutorial:
Install Ruby – Here you will found How to install Ruby?
Ruby is a scripting language designed by Yukihiro Matsumoto(Matz). In my previous article Why Rails ? ,...
How to solve LASTDIG problem in SPOJ ?
Last digit problem in SPOJ looks simple but it contains a important concept of Modular exponentiation. If want AC in submission then you have to know about this concept ,to...
PentestBox: A Portable Penetration Testing Distribution for Windows Environments
Download SourceForge Download Torrent
PentestBox is a...
How to use Debugger tool objdump in Linux
Debugger Tool Objdump in Linux
Debugger Tool objdump: C feel more familiar and C compiler exist in every operating system .Basically Linux is a free operating system that every has...
Statements-2(nested if-else and break statements)
Let's continue the statements .........
NESTED IF-ELSE
Here under an if statement we can use many more if statements
SYNTAX:
if(condition )//start of 1st if
{-------------
if (condition ) //start of 2nd...
Top 5 Android Apps a Programmer must have
It's time to do something exciting for Android users, here we are presenting Top 5 Android Apps a Programmer must have . If you are a programmer or Love...
Basic Exploits : Stack Operations
Note: Hacking is not a joke so please keep patience and learn it step by step.
Stack Operations
First and the most important topic to learn the basics of Exploits is...
Reading Console Input or Output Using Java Code
Hello Fiends
Today we learn about the concept of handling console input or output by using java code. Here we refer console to command prompt (cmd) . Friend we can...
Best C / C++ Compiler : Compilation using gcc
Searching for best C compiler for compilation?? You must have to stop searching here. gcc/g++: Gross compiler for C /C++ is the best compiler for execution or compilation of c/c++...
Why Null passed in first argument for the messageDialog in java ?
Null passed in first argument: JOptionPane showMessageDialog
method signatures:
showMessageDialog(Component parentComponent, Object message)
or
showMessageDialog(Component parentComponent, Object message, String title, int messageType)
or
showMessageDialog(Component parentComponent, Object message, String title, int messageType, Icon icon)
first parameter is...
Using Namespace in C++
Before you start
you must see our previous post My first C++ program
Start Learning about Namespace:
In c++ , when a variable function or class is used in a particular scope...
Types of Loop Control structure C++
Types of Loop Control structure C++
Loops are basically certain conditions that repeats certain steps until the condition becomes false , i.e a loop will continue to go on until...
Reverse String in c++ using sstream
One of good question can be asked about string is How to Reverse String ?
You can do in many ways but I am going to show you , the...
SELECTION STATEMENT: IF-ELSE STATEMENT
SELECTION STATEMENT: IF-ELSE STATEMENT
The if keyword is used to execute the statements/ block of statements . If the condition is true then those statements will be executed else the...
Building C/C++ code on the Command Line using Visual Studio for windows
If you read our previous post ie., Best C / C++ Compiler : Compilation using gcc , it means now you are in love with C-programming. Well today we are...
Operators in C /C++ programming & Their Use
An Operator is a symbol that tells compiler to perform certain mathematical or logical operations. Operators are usually same in all programming language like c/c++ , java , python etc.
Built-in...
Program to find prime numbers from a set of numbers
Write a program to find whether the number is prime or not ??
WAP/ Algorithm or Sudo code to find weather a number is prime or not is the most...