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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
Security Archives - TechRepublic
Security Archives - TechRepublic
NISL@THU
NISL@THU
T
The Exploit Database - CXSecurity.com
T
Threat Research - Cisco Blogs
A
Arctic Wolf
C
Cyber Attacks, Cyber Crime and Cyber Security
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Simon Willison's Weblog
Simon Willison's Weblog
V
Visual Studio Blog
T
Tenable Blog
J
Java Code Geeks
C
CERT Recently Published Vulnerability Notes
The Register - Security
The Register - Security
The Cloudflare Blog
博客园 - 叶小钗
人人都是产品经理
人人都是产品经理
U
Unit 42
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
Last Week in AI
Last Week in AI
Forbes - Security
Forbes - Security
I
Intezer
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
Scott Helme
Scott Helme
月光博客
月光博客
Google Online Security Blog
Google Online Security Blog
T
Tailwind CSS Blog
爱范儿
爱范儿
Recent Commits to openclaw:main
Recent Commits to openclaw:main
L
LangChain Blog
S
Securelist
Spread Privacy
Spread Privacy
D
Darknet – Hacking Tools, Hacker News & Cyber Security
酷 壳 – CoolShell
酷 壳 – CoolShell
P
Proofpoint News Feed
C
Cybersecurity and Infrastructure Security Agency CISA
Hugging Face - Blog
Hugging Face - Blog
S
Security Affairs
S
SegmentFault 最新的问题
L
Lohrmann on Cybersecurity
Application and Cybersecurity Blog
Application and Cybersecurity Blog
T
Tor Project blog
博客园 - 聂微东
H
Heimdal Security Blog
B
Blog
Attack and Defense Labs
Attack and Defense Labs

博客园 - 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