码迷,mamicode.com
首页 >  
搜索关键字:checkpoint security checkup 中文支持    ( 6625个结果
Linux中的默认权限与隐藏权限(文件、目录)
一个文件(或目录)拥有若干个属性,包括(r/w/x)等基本属性,以及是否为目录(d)与文件(-)或连接文件(l)等属性。此外,Linux还可以设置其他系统安全属性,使用chattr来设置,以lsattr来查看,最重要的是可以设置其不可修改的特性,即便是文件的拥有者都不能进行修改。这个属性相当重要,尤其是在安全机制方面(security)。...
分类:系统相关   时间:2014-05-13 14:32:08    阅读次数:266
Hydra介绍及使用
Number one of the biggest security holes are passwords, as every password security study shows. Hydra is a parallized login cracker which supports numerous protocols to attack. New modules are easy to...
分类:其他好文   时间:2014-05-13 06:11:08    阅读次数:379
DES加密/解密类。
using System.Security.Cryptography; //用的类 /// /// DES加密/解密类。 /// public class DESEncrypt { public DESEncrypt() { ...
分类:其他好文   时间:2014-05-12 10:38:19    阅读次数:235
C#修改文件或文件夹的权限,为指定用户、用户组添加完全控制权限
C#修改文件或文件夹的权限,为指定用户、用户组添加完全控制权限 //给Excel文件添加"Everyone,Users"用户组的完全控制权限 FileInfo fi = new FileInfo(excelPath); System.Security.AccessControl.FileSecurity fileSecurity...
分类:其他好文   时间:2014-05-11 21:46:53    阅读次数:377
C#使用oledb连接excel执行Insert Into语句出现“操作必须使用一个可更新的查询”的解决办法
我发生错误时的环境:Windows 7,Framework 4、0,Microsoft Office 2007,VS2010,c# WinForm;部分代码: string strConn = "Provider=Microsoft.Ace.OleDb.12.0;Persist Security Info=False;" + "data source=" + ...
分类:数据库   时间:2014-05-11 13:12:06    阅读次数:506
Spring Security 3 (三) 用户数据存放于数据库
上章回顾:上一章中,我们将用户名、密码以及用户对应的角色都配置于applicationContext-security.xml中,基本实现了我们能控制用户的访问权限。但是在现实开发中,我们不可能将用户信息硬编码在配置文件中,通常我们都是存放到数据中。同时我们应该对用户的密码进行加密存储。..
分类:数据库   时间:2014-05-10 09:04:45    阅读次数:414
OWASP(Open Web Application Security Project) Top 10 for JavaScript
InjectionInjection flaws, such as SQL, OS, and LDAP injection, occur when untrusted data is sent to an interpreter as part of a command or query. The ...
分类:移动开发   时间:2014-05-10 07:23:51    阅读次数:460
.net & Sitecore 判断用户是否登陆
方法一 .net(C#) //加入引用 using System.Web.Security; //获取User MembershipUser user = Membership.GetUser(); if(user ! = null) { //用户操作 user.UserName user.Emai...
分类:Web程序   时间:2014-05-09 20:07:05    阅读次数:303
获取文件的MD5码(C#)
using System;using System.IO;using System.Security.Cryptography;using System.Text;namespace Test{ public class MD5Code { /// /// ...
分类:其他好文   时间:2014-05-09 19:43:27    阅读次数:277
centos 配置 samba 与windows共享文件夹
yum install samba/etc/samba/smb.confdirectory mask = 0777 ← 指定新建目录的属性(以下4行)force directory mode = 0777directory security mask = 0777force directory s....
分类:Windows程序   时间:2014-05-09 15:38:50    阅读次数:437
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!