Skip to content

Commit 6848562

Browse files
committed
updating flask pythonic link and adding new security resource
1 parent 39e0d1e commit 6848562

File tree

6 files changed

+21
-4
lines changed

6 files changed

+21
-4
lines changed

all.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ <h1>Flask</h1>
403403
<a href="http://flask.pocoo.org/" style="border: none;"><img src="theme/img/flask.png" width="100%" alt="Official Flask logo. Flask Artwork License." class="technical-diagram" /></a></p>
404404
<h2>Why is Flask a good web framework choice?</h2>
405405
<p>Flask is considered more
406-
<a href="http://stackoverflow.com/questions/58968/what-defines-pythonian-or-pythonic">Pythonic</a>
406+
<a href="http://blog.startifact.com/posts/older/what-is-pythonic.html">Pythonic</a>
407407
than Django because Flask web application code is in most cases more explicit.
408408
Flask is easy to get started with as a beginner because there is little
409409
boilerplate code for getting a simple app up and running. </p>
@@ -3584,6 +3584,12 @@ <h2>Security resources</h2>
35843584
from beginning to advanced topics.</p>
35853585
</li>
35863586
<li>
3587+
<p>If you're having users submit sensitive information to your site you need
3588+
to use SSL/TLS. Anything before TLS is now insecure. Check out this
3589+
<a href="http://wingolog.org/archives/2014/10/17/ffs-ssl">handy guide</a> that goes
3590+
over some of the nuances of the subject.</p>
3591+
</li>
3592+
<li>
35873593
<p><a href="http://gexos.github.io/Hacking-Tools-Repository/">Hacking Tools Repository</a>
35883594
is a great list of password cracking, scanning, sniffing and other security
35893595
penetration testing tools.</p>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-10-17T06:02:36Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-10-18T13:18:30Z</updated></feed>

flask.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h1>Flask</h1>
4444
<a href="http://flask.pocoo.org/" style="border: none;"><img src="theme/img/flask.png" width="100%" alt="Official Flask logo. Flask Artwork License." class="technical-diagram" /></a></p>
4545
<h2>Why is Flask a good web framework choice?</h2>
4646
<p>Flask is considered more
47-
<a href="http://stackoverflow.com/questions/58968/what-defines-pythonian-or-pythonic">Pythonic</a>
47+
<a href="http://blog.startifact.com/posts/older/what-is-pythonic.html">Pythonic</a>
4848
than Django because Flask web application code is in most cases more explicit.
4949
Flask is easy to get started with as a beginner because there is little
5050
boilerplate code for getting a simple app up and running. </p>

source/content/pages/02-web-frameworks/0203-flask.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ choice4text: How can I version and store my source code so I don't lose it?
2424

2525
## Why is Flask a good web framework choice?
2626
Flask is considered more
27-
[Pythonic](http://stackoverflow.com/questions/58968/what-defines-pythonian-or-pythonic)
27+
[Pythonic](http://blog.startifact.com/posts/older/what-is-pythonic.html)
2828
than Django because Flask web application code is in most cases more explicit.
2929
Flask is easy to get started with as a beginner because there is little
3030
boilerplate code for getting a simple app up and running.

source/content/pages/10-security/1001-web-security.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ securing Linux distributions.
3939
[fantastic currated list of security reading material](http://dfir.org/?q=node/8/)
4040
from beginning to advanced topics.
4141

42+
* If you're having users submit sensitive information to your site you need
43+
to use SSL/TLS. Anything before TLS is now insecure. Check out this
44+
[handy guide](http://wingolog.org/archives/2014/10/17/ffs-ssl) that goes
45+
over some of the nuances of the subject.
46+
4247
* [Hacking Tools Repository](http://gexos.github.io/Hacking-Tools-Repository/)
4348
is a great list of password cracking, scanning, sniffing and other security
4449
penetration testing tools.

web-application-security.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,12 @@ <h2>Security resources</h2>
6666
from beginning to advanced topics.</p>
6767
</li>
6868
<li>
69+
<p>If you're having users submit sensitive information to your site you need
70+
to use SSL/TLS. Anything before TLS is now insecure. Check out this
71+
<a href="http://wingolog.org/archives/2014/10/17/ffs-ssl">handy guide</a> that goes
72+
over some of the nuances of the subject.</p>
73+
</li>
74+
<li>
6975
<p><a href="http://gexos.github.io/Hacking-Tools-Repository/">Hacking Tools Repository</a>
7076
is a great list of password cracking, scanning, sniffing and other security
7177
penetration testing tools.</p>

0 commit comments

Comments
 (0)