top of page
LEARN.THINK.GROW
Search


Pentesting with python (episode 6) | Python | pentesting | XSS attack
ONLY FOR EDUCATIONAL PURPOSE Cross-site scripting attacks are a type of injection that also refer to client-side code injection attack....
Dev Deck
Nov 13, 20202 min read
2 views
0 comments


DDOS with python | python | pentesting | ddos
With the boom in the e-commerce industry, the web server is now prone to attacks and is an easy target for the hackers. Hackers usually ...
Dev Deck
Nov 13, 20204 min read
5 views
0 comments


Pentesting with python (episode 5) | python | pentesting | ARP spoofing
ARP may be defined as a stateless protocol which is used for mapping Internet Protocol (IP) addresses to a physical machine addresses....
Dev Deck
Nov 13, 20204 min read
1 view
0 comments


Pentesting with python (episode 4) | python | pentesting | Sniffing
Sniffing or network packet sniffing is the process of monitoring and capturing all the packets passing through a given network using...
Dev Deck
Nov 13, 20204 min read
1 view
0 comments


Python network scanner (episode 3) | python | pentesting | scanner | hacking
Port scanning may be defined as a surveillance technique, which is used in order to locate the open ports available on a particular host....
Dev Deck
Nov 13, 20207 min read
10 views
0 comments


Pentesting with python (episode 2) Python | pentesting | Sockets
Sockets are the endpoints of a bidirectional communication channel. They may communicate within a process, between processes on the same...
Dev Deck
Nov 13, 20205 min read
2 views
0 comments


Pentesting with python (episode 1)
Pen test or penetration testing, may be defined as an attempt to evaluate the security of an IT infrastructure by simulating a ...
Dev Deck
Nov 13, 20203 min read
1 view
0 comments

File handling Python
What does file handling mean? Here is a basic definition of file handling in Python. File is a named location on the system storage which...
Dev Deck
Nov 9, 20208 min read
2 views
0 comments

Python Inheritance
What does inheritance mean in OOP? Inheritance is the core feature of object-oriented programming which extends the functionality of an...
Dev Deck
Nov 9, 20203 min read
1 view
0 comments

Python Class
Can I use OOP with Python? Yes, Python supports object-oriented programming (OOP). OOP is a development model which lets a programmer...
Dev Deck
Nov 9, 20203 min read
1 view
0 comments

Python Function
What is a Python Function? A function in Python is a logical unit of code containing a sequence of statements indented under a name...
Dev Deck
Nov 9, 202010 min read
0 views
0 comments

Python Switch case
Python Switch Case Statement Unlike other programming languages, Python doesn’t provide a switch case instrument over the self. However,...
Dev Deck
Nov 9, 20203 min read
0 views
0 comments

Python If Else
Python if Statement A bare Python if statement evaluates whether an expression is True or False. It executes the underlying code only if...
Dev Deck
Nov 9, 20206 min read
2 views
0 comments

Python While loop
1. What is a Python While Loop? A while loop is a control flow structure which repeatedly executes a block of code indefinite no. of...
Dev Deck
Nov 9, 20203 min read
0 views
0 comments

Python For loop
1. What is a Python For Loop? A for loop in Python requires at least two variables to work. The first is the iterable object such as a...
Dev Deck
Nov 9, 20203 min read
4 views
0 comments

Python Dictionary
A dictionary in Python is a scrambled collection of objects. Unlike other data types such as a list or a set which has a single value...
Dev Deck
Nov 9, 20207 min read
4 views
0 comments

Python Tuple
What is a Tuple in Python? A Python tuple is a collection type data structure which is immutable by design and holds a sequence of...
Dev Deck
Nov 9, 20208 min read
3 views
0 comments

Python Set
Python Set is a programmatic form of sets in mathematics and one of the core data structures in Python. It is an unordered and unique ...
Dev Deck
Nov 9, 20209 min read
0 views
0 comments


Python Numbers
Python numbers are a group of four data types: plain integer, long integer, floating-point and complex numbers. They not only support ...
Dev Deck
Nov 9, 20205 min read
3 views
0 comments

Python Data Types
In general, a data type defines the format, sets the upper & lower bounds of the data so that a program could use it appropriately. ...
Dev Deck
Nov 9, 20209 min read
0 views
0 comments
bottom of page