惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
月光博客
月光博客
S
Security Affairs
宝玉的分享
宝玉的分享
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
Cloudbric
Cloudbric
PCI Perspectives
PCI Perspectives
B
Blog RSS Feed
腾讯CDC
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Attack and Defense Labs
Attack and Defense Labs
N
News and Events Feed by Topic
T
The Blog of Author Tim Ferriss
H
Help Net Security
Vercel News
Vercel News
W
WeLiveSecurity
U
Unit 42
S
SegmentFault 最新的问题
Microsoft Azure Blog
Microsoft Azure Blog
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
S
Schneier on Security
The Register - Security
The Register - Security
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
博客园 - Franky
H
Hacker News: Front Page
WordPress大学
WordPress大学
I
Intezer
M
MIT News - Artificial intelligence
博客园 - 叶小钗
The Last Watchdog
The Last Watchdog
T
Troy Hunt's Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Security Blog
Microsoft Security Blog
L
Lohrmann on Cybersecurity
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Schneier on Security
Schneier on Security
P
Proofpoint News Feed
V
V2EX
Help Net Security
Help Net Security
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs

博客园 - angushine

获得本机IP地址 设置eclipse文件默认的编码方式 Eclipse Helios的PermGen space错误的解决办法 取指定长度的字符串(双字节算2) - angushine - 博客园 截取指定长度字符串 Silverlight项目无法启动调试 兼容各个版本浏览器的设置最小宽度 动态分配一维数组 浏览器区别 封装log4net C#获得调用方法的名称和类名 jQuery全选/全消CheckBox以及JS回调一例 MySQL绿色安装方法1 WebBrowser中调用加载页面的Javascript方法 定时更新内存和虚拟内存 多线程中更新组件 Request、Request.QueryString、Request.Form与Request.Params 反射调用静态方法 开始→运行→输入的命令集锦(转载)
增强 VSS 的文件共享安全性
angushine · 2009-12-17 · via 博客园 - angushine

为了避免权限低的人员直接复制或删除VSS共享文件夹下的数据文件,或者破解超级管理员密码,可以在VSS服务器上作以下配置

1、 确保VSS目录所在分区为NTFS格式
2、 假定VSS对应于服务器上的“X:\项目组名”目录
3、 建立两个子目录,例如:
  X:\项目组名\Vss
  X:\项目组名\VssData
4、 将 srcsafe.ini 移到“X:\项目组名\Vss”下
  将 data、temp、users三个目录和users.txt都移到“X:\项目组名\VssData”下

5、 将“X:\项目组名\Vss”共享为“项目组名”,可以为只读共享
6、 将“X:\项目组名\VssData”共享为“项目组名$”,在“安全”页中作如下权限设置:
  1)将允许“完全控制”一项不选中
  2)将“允许将来自父系的可继承权限传播给该对象”一项不选中
7、 对“X:\项目组名\VssData\Data\labels”目录设置:
  1)将“允许将来自父系的可继承权限传播给该对象”一项不选中
  2)允许Everyone读和写操作
8、将X:\项目组名\VssData\Users目录的修改权限勾上,否则关闭VSS的时候会报“File ... already exists”错误。
9、 对“X:\项目组名\VssData\Data ”目录设置:将Everyone的权限设置的“拒绝列出文件夹目录”勾上。
  这样,普通用户就不能访问存放数据的data目录了
10、 最后,我们打开VSS目录下的srcsafe.ini文件,做出以下修改:
  Data_Path = data 改为 Data_Path = ..\项目组名$\data
  Temp_Path = temp 改为 Temp_Path = ..\项目组名$\temp
  Users_Path = users 改为 Users_Path = ..\项目组名$\users
  Users_Txt = users.txt 改为 Users_Txt = ..\项目组名$\users.txt