半个美国网络瘫痪 发表于 2019-03-14 | 分类于 网络安全 #一 事件回顾10.22日(美国当地时间21日),大半个美国互联网都瘫痪了。 因为这件事情,各大美国知名网站都收到了影响,Twitter、Spotify、Netflix、Github、Airbnb、Visa等网站一度出现无法登陆的现象。 #二 网络评价程序员: 网红: 看起来Twitter是又挂 ... 阅读全文 »
MIRACL 发表于 2019-03-14 | 分类于 网络安全 #一.MIRACL简介MIRACL(Multiprecision Integer and RationalArithmetic C/c++ Library)是一套由Shamus Software Ltd.所开发的一套关于大数运算函数库,用来设计与大数运算相关的密码学之应用,包含了RSA 公开密码学 ... 阅读全文 »
DVWA测试报告 发表于 2019-03-14 | 分类于 网络安全 [TOC] 3 安装DVWA3.1 从官网上下载DVWA包附下载链接: 3.2 将包传送到服务器中利用winscp,将包传送至/var/www/html中 3.3 配置config.inc.php1vim /var/www/html/DVMA/config/config.inc.php 修改数 ... 阅读全文 »
DVWA-xxs 发表于 2019-03-14 | 分类于 网络安全 #一 测试环境DVWA部署位置 #二 简单介绍 ##2.1 什么是XSS?Cross Site Script英文缩写:CSS又叫XSS,中文意思:跨站脚本攻击。它指的是恶意攻击者往Web页面里插入恶意html代码,当用户浏览该页之时,嵌入其中Web里面的html代码会被执行。 XSS的攻击目标是为 ... 阅读全文 »
同步文档 发表于 2019-03-14 | 分类于 同步 http://www.linuxidc.com/Linux/2016-05/131096.htm 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545 ... 阅读全文 »
Jump Game 发表于 2019-03-14 | 分类于 贪心 , leetcode Jump Game 1234567891011121314class Solution {public: //思路:从 0 出发,一层一层跳,看最后能不能超过最高层 bool canJump(vector<int>& nums) { i ... 阅读全文 »
Jump Game II 发表于 2019-03-14 | 分类于 贪心 , leetcode https://leetcode.com/problems/jump-game-ii/ 1234567891011121314151617181920212223242526272829303132class Solution {public: int jump(vector< ... 阅读全文 »
Best Time to Buy and Sell Stock 发表于 2019-03-14 | 分类于 贪心 , leetcode https://leetcode.com/problems/best-time-to-buy-and-sell-stock/ 123456789101112131415class Solution {public: int maxProfit(vector<int>&a ... 阅读全文 »
Best Time to Buy and Sell Stock 2 发表于 2019-03-14 | 分类于 贪心 , leetcode https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/ 12345678910111213class Solution {public: int maxProfit(vector<int>&am ... 阅读全文 »