03 2018 档案

摘要:企业要求其计算机系统具有高度的安全性。服务器攻击或恶意软件入侵可能会造成不可估量的损失。本文介绍了最常用的服务器审计和测试工具,以及渗透测试和网络安全工具。 大多数企业倾向于向其客户提供Web服务,因为互联网的存在非常重要,因为诸如高收入潜力,广泛客户的接触等因素。使得企业服务易受各种与Web应用程 阅读全文
posted @ 2018-03-18 16:36 数字安全极客 阅读(646) 评论(0) 推荐(0)
摘要:Dante+Proxifier搭建Socks5服务端和客户端 ### Proxifier Windows客户端使用 http://bbs.ngacn.cc/read.php?tid=3021548### Dante-server 服务端搭建 http://www.asklinux.com/linux 阅读全文
posted @ 2018-03-18 14:58 数字安全极客 阅读(2077) 评论(0) 推荐(0)
摘要:from flask import render_template, flash, redirect from app import app from app import db, models from forms import LoginForm, SheetForm, VulForm, EveForm import datetime import time // 原始SQL ... 阅读全文
posted @ 2018-03-18 13:56 数字安全极客 阅读(104) 评论(0) 推荐(0)
摘要:## Web 表单 配置 为了能够处理 web 表单,我们将使用 Flask-WTF ,该扩展封装了 WTForms 并且恰当地集成进 Flask 中。 许多 Flask 扩展需要大量的配置,因此我们将要在 microblog 文件夹的根目录下创建一个配置文件以至于容易被编辑。这就是我们将要开始的(文件 config.py): $ config.py > C... 阅读全文
posted @ 2018-03-18 13:55 数字安全极客 阅读(141) 评论(0) 推荐(0)
摘要:## 基础使用 $ vim app/templates/index.html > > > {{title}} - microblog > > > Hello, {{user.nickname}}! > > $ vim app/views.py > from ... 阅读全文
posted @ 2018-03-18 13:53 数字安全极客 阅读(151) 评论(0) 推荐(0)
摘要:# flask学习 参考:http://www.pythondoc.com/flask-mega-tutorial/ ## python3.4 默认支持虚拟环境使用(用最简单的方法,解决问题) wget python3.4 && ./configure && make && make install ## 创建一个虚拟环境 //这个环境能够安装所有的东西,而主P... 阅读全文
posted @ 2018-03-18 13:52 数字安全极客 阅读(176) 评论(0) 推荐(0)
摘要:site: https://sourceforge.net/projects/t50/ 例子:t50 192.168.1.1 --flood--protocol T50|TCP|UDP|ICMP--threshold 500--floodt50 --flood --protocol TCP 192. 阅读全文
posted @ 2018-03-18 10:38 数字安全极客 阅读(3256) 评论(0) 推荐(0)
摘要:参考网址:http://keepachangelog.com/zh-CN/0.3.0/ 更新日志绝对不应该是git日志的堆砌物 Version 0.3.0 更新日志是什么? 更新日志(Change Log)是一个由人工编辑,以时间为倒叙的列表。 这个列表记录所有版本的重大变动。 # Change L 阅读全文
posted @ 2018-03-18 10:25 数字安全极客 阅读(497) 评论(0) 推荐(0)
摘要:# 本地Git操作 $ cd /project/ $ git init $ git log #查看提交历史 $ git reset –hard commit-id 回退 #代码提交 $ git pull $ git add –all $ git commit -m ‘comment’ $ git p 阅读全文
posted @ 2018-03-18 10:19 数字安全极客 阅读(165) 评论(0) 推荐(0)
摘要:命令: 参考:https://dormousehole.readthedocs.org/en/latest/index.html Flask模版(支持表单和ORM): https://github.com/miguelgrinberg/microblog/archive/v0.4.zip 阅读全文
posted @ 2018-03-18 09:52 数字安全极客 阅读(310) 评论(0) 推荐(0)
摘要:WAF产品化 2011-1-13 目标:稳定的版本 和 标准的手册 1.硬件差异问题,争取了OEM提供硬件样机。 2.OEM功能本来在我们手里,为了更好产品化,配合移交工作。 3.我们做好 产品生产实施,技术支持,问题反馈等工作。 4.软件部门需要我们做的,我们全力配合。 5.软件部门,把稳定性和技 阅读全文
posted @ 2018-03-17 12:43 数字安全极客 阅读(581) 评论(0) 推荐(0)
摘要:Find the service creation date in Windows Starting in Vista, service creation is logged to the "System" event log under Service Control Manager event 阅读全文
posted @ 2018-03-17 12:40 数字安全极客 阅读(670) 评论(0) 推荐(0)
摘要:Dump a linux process's memory I'm not sure how you dump all the memory to a file without doing this repeatedly (if anyone knows an automated way to ge 阅读全文
posted @ 2018-03-17 12:32 数字安全极客 阅读(1099) 评论(0) 推荐(0)
摘要:User Space Debugging Tools in Linux By definition, debugging tools are those programs which allow us to monitor ,control and correct errors in other p 阅读全文
posted @ 2018-03-17 12:24 数字安全极客 阅读(215) 评论(0) 推荐(0)