Tuesday, 21 July 2015

Introduction to Network Programming using TCP/IP !

Introduction to Network Programming using TCP/IP !

The client server programming is the most common type(other is P2P network) of network applications. A server is a program(like Google,Yah...
Why do hackers need to network programming ?

Why do hackers need to network programming ?

Machines can also talk to each other by means of networking. Similarly, programs can become much more powerful when they have the ability to...
Concept of classes in python !

Concept of classes in python !

In all our python programs till now, we have designed our program around functions or blocks of statements which manipulate data. This is ...
Concept of function in python !

Concept of function in python !

In Python, functions provide organized blocks of reusable code. Typically, this allows a programmer to write a block of code to perform a ...
Conditional Processing and loop concept in python !

Conditional Processing and loop concept in python !

In the programs we have seen till now, there has always been a series of statements and Python faithfully executes them in the same order. ...
Loops in python !

Loops in python !

The concept of loop is important for both programmer and hackers. For programmer, you want to execute some code 50 times then instead of wr...
Concept of dictionaries in python !

Concept of dictionaries in python !

The Python dictionary data structure provides a hash table that can store any number of Python objects. The dictionary consists of pairs of...
Concept of  Tuples in python !

Concept of Tuples in python !

So far, you have seen two compound types: strings, which are made up of characters; and lists, which are made up of elements of any type.T...
List in Python !

List in Python !

The list data structure in Python provides an excellent method for storing arrays of objects in Python. A programmer can construct lists of...
Concept of string in python!

Concept of string in python!

We’ll look at the two string classes from a number of viewpoints:  String slices , String methods , String Formatting. A string is a sequenc...
Hello world in python !

Hello world in python !

As we have discussed, Python is the language of choice for hackers and security analysts for creating powerful and effective tools.it is m...
Why python is favourite of Hackers ?

Why python is favourite of Hackers ?

I learned Python specifically for hacking and  I first started with Python.when I needed to write an script which was not available on int...
Assembly in Real world-writing shell spawn shellcode!

Assembly in Real world-writing shell spawn shellcode!

In previous tutorial,We have learned how to write exit() shellcode . Learning to write simple exit() shellcode is in reality just a learning...
 
Back To Top