Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
PySec101 Fall 2013 - J1E1
Search
Mohammad reza Kamalifard
November 10, 2013
Education
0
83
PySec101 Fall 2013 - J1E1
Python For Ethical hackers 1 - Mohammad reza Kamalifard
Mohammad reza Kamalifard
November 10, 2013
Tweet
Share
More Decks by Mohammad reza Kamalifard
See All by Mohammad reza Kamalifard
جلسه اول پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
1
220
جلسه دوم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
0
120
جلسه سوم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
0
79
جلسه چهارم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲
itmard
1
87
جلسه پنجم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۱
itmard
0
63
جلسه پنجم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۲
itmard
0
110
جلسه ششم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۱
itmard
0
79
جلسه ششم پایتون برای هکر های قانونی دوره مقدماتی پاییز ۹۲- ارائه ۲
itmard
1
98
PySec101 Fall 2013 - J2E1
itmard
0
57
Other Decks in Education
See All in Education
Use Cases and Course Review - Lecture 8 - Human-Computer Interaction (1023841ANR)
signer
PRO
0
1.4k
Modelamiento Matematico (Ingresantes UNI 2026)
robintux
0
180
0203
cbtlibrary
0
140
Data Presentation - Lecture 5 - Information Visualisation (4019538FNR)
signer
PRO
0
3k
AIで日本はどう進化する? 〜キミが生きる2035年の地図〜
behomazn
0
130
リモートリポジトリの操作 / 02-c-remote
kaityo256
PRO
0
110
1216
cbtlibrary
0
160
高校数学B「統計的な推測」 分野の問題と課題
shimizudan
1
110
Chapitre_2_-_Partie_3.pdf
bernhardsvt
0
200
160人の中高生にAI・技術体験の講師をしてみた話
shuntatoda
1
380
Information Architectures - Lecture 2 - Next Generation User Interfaces (4018166FNR)
signer
PRO
1
1.9k
Future Trends and Review - Lecture 12 - Web Technologies (1019888BNR)
signer
PRO
0
3.3k
Featured
See All Featured
Prompt Engineering for Job Search
mfonobong
0
180
From Legacy to Launchpad: Building Startup-Ready Communities
dugsong
0
170
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
300
Making the Leap to Tech Lead
cromwellryan
135
9.8k
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
280
Claude Code どこまでも/ Claude Code Everywhere
nwiizo
64
53k
Code Reviewing Like a Champion
maltzj
528
40k
Conquering PDFs: document understanding beyond plain text
inesmontani
PRO
4
2.5k
The innovator’s Mindset - Leading Through an Era of Exponential Change - McGill University 2025
jdejongh
PRO
1
120
How to Think Like a Performance Engineer
csswizardry
28
2.5k
Faster Mobile Websites
deanohume
310
31k
Why Your Marketing Sucks and What You Can Do About It - Sophie Logan
marketingsoph
0
110
Transcript
None
None
• • • • • •
• • • • • • • • • •
•
• • • • •
• • • •
• • • •
• • • • • • •
• • •
$ python Python 2.7.3 (default, Apr 10 2013, 05:46:21) [GCC
4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>>
>>> print 'Hello, World!' Hello, World! >>> >>> print 'Welcome
to PYSEC101 Course' Welcome to PYSEC101 Course >>> >>> 'Hello World' 'Hello World' >>> 3 3 >>>
>>> 12 / 7 1 >>> >>> 12.0 / 7
1.7142857142857142 >>> >>> float(12) / 7 1.7142857142857142 >>>
>>> 3 + 2 * 4 11 >>> ( 3
+ 2 ) * 4 20 >>> >>> _ 20 >>>
• • •
$ vim Hello.py print 'Hello, World!' ~ ~ ~ ~
~ ~ ~ $ python Hello.py Hello, World!
None
None