随笔分类 -  艺术

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页
摘要: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 阅读全文
posted @ 2021-01-16 10:51 晨风_Eric 阅读(90) 评论(0) 推荐(0)
摘要:Chapter 5 - Basic Math and Statistics Segment 4 - Summarizing categorical data using pandas import numpy as np import pandas as pd The basics address 阅读全文
posted @ 2021-01-16 09:17 晨风_Eric 阅读(101) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2021-01-16 08:40 晨风_Eric 阅读(141) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2021-01-10 18:01 晨风_Eric 阅读(99) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2021-01-09 18:41 晨风_Eric 阅读(101) 评论(0) 推荐(0)
摘要:Chapter 4 - Practical Data Visualization Segment 6 - Creating statistical data graphics Statistical Plots Allow Viewers To: Identify outliers Visualiz 阅读全文
posted @ 2021-01-07 20:26 晨风_Eric 阅读(957) 评论(0) 推荐(0)
摘要:Chapter 4 - Practical Data Visualization Segment 5 - Visualizing time series import numpy as np from numpy.random import randn import pandas as pd fro 阅读全文
posted @ 2021-01-06 21:10 晨风_Eric 阅读(75) 评论(0) 推荐(0)
摘要:Chapter 4 - Practical Data Visualization Segment 4 - Creating labels and annotations import numpy as np import pandas as pd from pandas import Series, 阅读全文
posted @ 2021-01-05 21:29 晨风_Eric 阅读(111) 评论(0) 推荐(0)
摘要:Chapter 4 - Practical Data Visualization Segment 3 - Plot formatting import numpy as np import pandas as pd from pandas import Series, DataFrame impor 阅读全文
posted @ 2021-01-04 21:12 晨风_Eric 阅读(133) 评论(0) 推荐(0)
摘要: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 阅读全文
posted @ 2021-01-03 21:21 晨风_Eric 阅读(119) 评论(0) 推荐(0)
摘要:Chapter 4 - Practical Data Visualization Segment 1 - Creating standard data graphics import numpy as np from numpy.random import randn import pandas a 阅读全文
posted @ 2021-01-03 20:51 晨风_Eric 阅读(102) 评论(0) 推荐(0)
摘要:Python for Data Science - Data Visualization Three Different Data Visualization Types Data storytelling - for presentations to organizational decision 阅读全文
posted @ 2021-01-03 17:20 晨风_Eric 阅读(112) 评论(0) 推荐(0)
摘要:Communication IMPPORTANCE OF COMMUNICATION Good communication is critical to the penetration test success Most penetration tests should be conducted o 阅读全文
posted @ 2020-12-18 20:37 晨风_Eric 阅读(70) 评论(0) 推荐(0)
摘要:Mitigation strategies RECOMMEND MITIGATION STRATEGIES Nearly every pen test will discover multiple vulnerabilities. A pen test report should contain r 阅读全文
posted @ 2020-12-17 21:58 晨风_Eric 阅读(55) 评论(0) 推荐(0)
摘要:Post-report Activities POST-REPORT DELIVERY ACTIVITIES Delivering the report isn't the end There is more work to do Delivering may include presenting 阅读全文
posted @ 2020-12-17 21:33 晨风_Eric 阅读(85) 评论(0) 推荐(0)
摘要:Writing Reports PEN TEST REPORT Communicate findings AND recommendations Primary recommendations Only change to make your points Digest of all activit 阅读全文
posted @ 2020-12-15 21:21 晨风_Eric 阅读(210) 评论(0) 推荐(0)
摘要:Scripting languages comparison Comparing Scripting Languages Bash PowerShell Ruby Python Comments # # or <# #> # or =begin =end # Variables - assign v 阅读全文
posted @ 2020-12-14 20:30 晨风_Eric 阅读(128) 评论(0) 推荐(0)
摘要: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, 阅读全文
posted @ 2020-12-13 18:27 晨风_Eric 阅读(63) 评论(0) 推荐(0)
摘要: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 = 阅读全文
posted @ 2020-12-13 18:08 晨风_Eric 阅读(50) 评论(0) 推荐(0)
摘要:PowerShell scripts Run PowerShell on Windows as a administrator. And set the execution policy. Set-ExecutionPolicy Unrestricted Following is a simple 阅读全文
posted @ 2020-12-05 19:34 晨风_Eric 阅读(56) 评论(0) 推荐(0)

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 16 下一页