分类

学习笔记 [17]
渗透测试 [4]
一些杂文 [14]
coding [16]
漏洞信息 [17]
技术文章 [15]
开发文档 [8]
个人作品 [5]
PS:个人作品在各种下载栏目均有下载

站内搜索

日历

«  January 2010  »
Su Mo Tu We Th Fr Sa
     12
3456789
10111213141516
17181920212223
24252627282930
31

访问统计(起于2010/10/2)

访问统计
PortWatcher's Blog
Monday, 2025-06-30, 6:59 AM
Welcome Guest
Main | Registration | Login | RSS

Blog

Main » 2010 » January » 30

组策略可以直接启动termservice,只需修改注册表一个地方:
reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /F
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v fDenyTSConnections /t REG_DWORD /d 0
执行后3389就会打开,对于各种windows系统均适用,且不用重启。
Category: 技术文章 | Views: 816 | Added by: Jury | Date: 2010-01-30 | Comments (0)

1、前段时间看到的:

Code

<script>
var parent_url= window.parent.location.href.toLowerCase();
var where = =document.referrer.toLowerCase();
var self_url = =document.location.href.toLowerCase();
if (where.index0f("gov")>=0 self_url == parent_url
where == "")
{
}
location.replace("about;blank");
}
</script>

2、刚刚不小心看到的:

Code
Category: coding | Views: 743 | Added by: Jury | Date: 2010-01-30 | Comments (0)