client server program in c ! By Unknown at 09:37 In previous tutorial " Introduction to Network Programming using TCP/IP ! " : http://programmingethicalhackerway.blogspot.in/2015/...
Introduction to Network Programming using TCP/IP ! By Unknown at 23:36 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 ? By Unknown at 23:31 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 ! By Unknown at 23:27 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 ! By Unknown at 23:23 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 ! By Unknown at 23:20 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 ! By Unknown at 23:17 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 ! By Unknown at 23:13 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 ! By Unknown at 23:10 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 ! By Unknown at 23:05 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! By Unknown at 22:59 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 ! By Unknown at 22:50 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 ? By Unknown at 22:45 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! By Unknown at 22:39 In previous tutorial,We have learned how to write exit() shellcode . Learning to write simple exit() shellcode is in reality just a learning...