- How to Build a Successful Information Security Career (Daniel Miessler)
- The First Steps to a Career in Information Security (Errata Security - Marisa Fagan)
- Hiring your first Security Professional (Peerlyst - Dawid Balut)
- How to Start a Career in Cyber security
- How to Get Into Information Security (ISC^2)
- https://www.isc2.org/how-to-get-into-information-security.aspx
Install the line_profiler
module:
[driti@ubuntu ]$ pip install line_profiler
Add the @profile
decorator and run:
[driti@ubuntu ]$ kernprof.py -l -v example.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import time | |
import sys | |
from subprocess import call | |
def check_pid(pid): | |
""" Check For the existence of a unix pid. """ | |
while True: | |
try: | |
os.kill(pid, 0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
week | |
date range | |
project name | |
description | |
============ | |
2 | |
08/01 - 14/01 | |
------------- | |
toy-deploy | |
Aim of the project is not in solving any problem but in project design itself. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Open fixture json files and remove lines which contain '>>>', '|||', '<<<', | |
and check that `.field.permissions` are unique""" | |
for fname in files: | |
fp = open(fname) | |
perms = json.loads(fixit(fname)) | |
fp.close() | |
for perm in perms: | |
item = perm['fields']['permissions'] | |
res = uniq(item) |
OlderNewer