随笔分类 - 艺术
摘要:Chapter 5 - Basic Math and Statistics Segment 5 - Starting with parametric methods in pandas and scipy import pandas as pd import numpy as np import m
阅读全文
摘要:Chapter 5 - Basic Math and Statistics Segment 4 - Summarizing categorical data using pandas import numpy as np import pandas as pd The basics address
阅读全文
摘要:Chapter 5 - Basic Math and Statistics Segment 3 - Generating summary statistics using pandas and scipy import numpy as np import pandas as pd from pan
阅读全文
摘要:Chapter 5 - Basic Math and Statistics Segment 2 - Multiplying matrices and basic linear algebra import numpy as np from numpy.random import randn np.s
阅读全文
摘要:Chapter 5 - Basic Math and Statistics Segment 1 - Using NumPy to perform arithmetic operations on data import numpy as np from numpy.random import ran
阅读全文
摘要:Chapter 4 - Practical Data Visualization Segment 6 - Creating statistical data graphics Statistical Plots Allow Viewers To: Identify outliers Visualiz
阅读全文
摘要:Chapter 4 - Practical Data Visualization Segment 5 - Visualizing time series import numpy as np from numpy.random import randn import pandas as pd fro
阅读全文
摘要:Chapter 4 - Practical Data Visualization Segment 4 - Creating labels and annotations import numpy as np import pandas as pd from pandas import Series,
阅读全文
摘要:Chapter 4 - Practical Data Visualization Segment 3 - Plot formatting import numpy as np import pandas as pd from pandas import Series, DataFrame impor
阅读全文
摘要:Chapter 4 - Practical Data Visualization Segment 2 - Defining elements of a plot import numpy as np from numpy.random import randn import pandas as pd
阅读全文
摘要:Chapter 4 - Practical Data Visualization Segment 1 - Creating standard data graphics import numpy as np from numpy.random import randn import pandas a
阅读全文
摘要:Python for Data Science - Data Visualization Three Different Data Visualization Types Data storytelling - for presentations to organizational decision
阅读全文
摘要:Communication IMPPORTANCE OF COMMUNICATION Good communication is critical to the penetration test success Most penetration tests should be conducted o
阅读全文
摘要:Mitigation strategies RECOMMEND MITIGATION STRATEGIES Nearly every pen test will discover multiple vulnerabilities. A pen test report should contain r
阅读全文
摘要:Post-report Activities POST-REPORT DELIVERY ACTIVITIES Delivering the report isn't the end There is more work to do Delivering may include presenting
阅读全文
摘要:Writing Reports PEN TEST REPORT Communicate findings AND recommendations Primary recommendations Only change to make your points Digest of all activit
阅读全文
摘要:Scripting languages comparison Comparing Scripting Languages Bash PowerShell Ruby Python Comments # # or <# #> # or =begin =end # Variables - assign v
阅读全文
摘要:Python Scripts DEMO portscan.py import sys, socket target = sys.argv[1] minport = int(sys.argv[2]) maxport = int(sys.argv[3]) def porttry(cur_target,
阅读全文
摘要:Ruby Script Demo Portscan.rb #!/usr/bin/ruby require 'socket' TARGET = ARGV[0] || '192.168.2.22' MINPORT = ARGV[1] || 22 MAXPORT = ARGV[2] || 80 $i =
阅读全文
摘要:PowerShell scripts Run PowerShell on Windows as a administrator. And set the execution policy. Set-ExecutionPolicy Unrestricted Following is a simple
阅读全文

浙公网安备 33010602011771号