<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>TOP技术社区</title>
    <link>http://www.topjishu.com/forum.php</link>
    <description>Latest 20 threads of all forums</description>
    <copyright>Copyright(C) TOP技术社区</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sat, 19 May 2012 14:31:58 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.topjishu.com/static/image/common/logo_88_31.gif</url>
      <title>TOP技术社区</title>
      <link>http://www.topjishu.com/</link>
    </image>
    <item>
      <title>如何系统化学习计算机</title>
      <link>http://www.topjishu.com/thread-252-1-1.html</link>
      <description><![CDATA[这个实在邪八看到的  感觉不错  就转来了


信息来源：邪恶八进制信息安全团队（www.eviloctal.com）
议题作者：cwa

    我，还有很多网络上对计算机相关技术兴趣的菜鸟，都希望深入地学习一下，只是苦于不知从何学起，虽然搜索引擎是最好的老师，但是在浩瀚的知 ...]]></description>
      <category>『其他综合』</category>
      <author>怖客、残</author>
      <pubDate>Sat, 19 May 2012 00:20:48 +0000</pubDate>
    </item>
    <item>
      <title>XSS 攻擊常用腳本</title>
      <link>http://www.topjishu.com/thread-251-1-1.html</link>
      <description><![CDATA[1、這個應該都知道

alert(\&quot;test\&quot;)    常用于測試 是否存在跨站

2、window.alert(document.cookie);

這句代碼將會彈出壹個包含有浏覽者cookie信息的對話框，如果用戶已經通過帳號登陸網站，在顯示的cookie信息中將會包含有用戶的賬戶名和密碼。

3、window.op ...]]></description>
      <category>『网络安全』</category>
      <author>怖客、残</author>
      <pubDate>Sat, 19 May 2012 00:11:52 +0000</pubDate>
    </item>
    <item>
      <title>跨站挂马全攻略</title>
      <link>http://www.topjishu.com/thread-250-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>『网络安全』</category>
      <author>怖客、残</author>
      <pubDate>Sat, 19 May 2012 00:11:13 +0000</pubDate>
    </item>
    <item>
      <title>2012年5月19日签到记录贴</title>
      <link>http://www.topjishu.com/thread-249-1-1.html</link>
      <description><![CDATA[我今天最想说:「曰...，勿装B，装B天天被雷P...」.]]></description>
      <category>『想说就说』</category>
      <author>luguo0819</author>
      <pubDate>Fri, 18 May 2012 17:54:50 +0000</pubDate>
    </item>
    <item>
      <title>所谓黑客的常用工具资料介绍</title>
      <link>http://www.topjishu.com/thread-248-1-1.html</link>
      <description><![CDATA[----------                 刚入门者是需要软件来协助自己提高技术的，那么就耐心的把下面看完！本人想说的是黑客软件不报毒的话那就不是黑客软件了，但是也要注意人为的病毒。

一、扫描工具 
X-scan 3.1 焦点出的扫描器，国内最优秀的安全扫描软件之一!非常专业的 ...]]></description>
      <category>『网络安全』</category>
      <author>Dreams</author>
      <pubDate>Thu, 17 May 2012 17:29:25 +0000</pubDate>
    </item>
    <item>
      <title>2012年5月18日签到记录贴</title>
      <link>http://www.topjishu.com/thread-247-1-1.html</link>
      <description><![CDATA[我今天最想说:「做梦了」.]]></description>
      <category>『想说就说』</category>
      <author>琴轩</author>
      <pubDate>Thu, 17 May 2012 16:20:14 +0000</pubDate>
    </item>
    <item>
      <title>好久没来冒泡了 给大家发些教程</title>
      <link>http://www.topjishu.com/thread-246-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>『其他资源』</category>
      <author>暴徒</author>
      <pubDate>Thu, 17 May 2012 15:11:00 +0000</pubDate>
    </item>
    <item>
      <title>VC++ SDK 编程之进程</title>
      <link>http://www.topjishu.com/thread-245-1-1.html</link>
      <description><![CDATA[VC++ SDK 编程之进程

什么是进程？如何产生和终止一个进程？
理论：
进程是什么？下面是我从核心编程中节选的解释： 
“一个进程是一个正在执行的应用程序，它包含有：私有的虚拟地址空间、代码、数据和其它的操作系统资源，譬如进程可以存取的管道、文件和同步 ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 08:05:52 +0000</pubDate>
    </item>
    <item>
      <title>vc另一种方法实现进程结束，弱爆了，超简单</title>
      <link>http://www.topjishu.com/thread-244-1-1.html</link>
      <description><![CDATA[就是在c语言中调用system函数，taskkill是cmd（命令提示符）下的一个函数，它的作用是结束进程，
/f /im是它的一些参数，
/f是强制结束，如果一些程序不让结束，加上它就有可能被解决，
/im是输入进程名称，不加它，那你就要输入这个进程的PID，PID能用tasklist查出来 ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 07:23:45 +0000</pubDate>
    </item>
    <item>
      <title>VC++ SDK编程之多线程编程</title>
      <link>http://www.topjishu.com/thread-243-1-1.html</link>
      <description><![CDATA[VC++ SDK编程之多线程编程

本课中，我们将学习如何进行多线程编程。另外我们还将学习如何在不同的线程间进行通信。

理论：
前一课中，我们学习了进程，其中讲到每一个进程至少要有一个主线程。这个线程其实是进程执行的一条线索，除此主线程外您还可以给进程增加 ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 07:13:56 +0000</pubDate>
    </item>
    <item>
      <title>网络数据包捕获与应用VC6.0编程.pdf</title>
      <link>http://www.topjishu.com/thread-242-1-1.html</link>
      <description><![CDATA[网络数据包捕获与应用VC6.0编程.pdf







点击进入下载－网络数据包捕获与应用的VC__6_1_.0编程.rar]]></description>
      <category>『其他资源』</category>
      <author>lxsky</author>
<enclosure url="http://www.topjishu.com/data/attachment/forum/201205/17/150802amayj8gfvjniyz8m.jpg" length="151727" type="image/jpeg" />      <pubDate>Thu, 17 May 2012 07:08:40 +0000</pubDate>
    </item>
    <item>
      <title>vc++电子邮箱的发送和接收源码，可以做邮件群发！！！</title>
      <link>http://www.topjishu.com/thread-241-1-1.html</link>
      <description><![CDATA[c++电子邮箱的发送和接收源码，可以做邮件群发！！！

里面包括电子邮件接收程序的开发   和 电子邮件发送程序的开发 源码


本人亲测，可编译。vc++6.0








**** 本内容被作者隐藏 ****]]></description>
      <category>『其他资源』</category>
      <author>lxsky</author>
<enclosure url="http://www.topjishu.com/data/attachment/forum/201205/17/150002atxk885e5gfftxgo.jpg" length="89411" type="image/jpeg" />      <pubDate>Thu, 17 May 2012 07:06:15 +0000</pubDate>
    </item>
    <item>
      <title>远程线程注入目标进程</title>
      <link>http://www.topjishu.com/thread-240-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 06:39:00 +0000</pubDate>
    </item>
    <item>
      <title>在VC中使用Flash美化程序</title>
      <link>http://www.topjishu.com/thread-239-1-1.html</link>
      <description><![CDATA[在VC中使用Flash美化程序 

利用flash可以作出很漂亮的动画，想不想让自己的程序也有这样漂亮的界面呢？ ^_^，其实，要做到这点也不难。在这里将介绍怎样把falsh制作的界面嵌入到自己的程序中，并让flash动画和自己的程序进行交互。

　　我们分为两步来走:

　　 ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 06:37:17 +0000</pubDate>
    </item>
    <item>
      <title>VC++用户界面多线程实例源码</title>
      <link>http://www.topjishu.com/thread-238-1-1.html</link>
      <description><![CDATA[利用类的虚函数run（），使用AfxBeginThread（RUNTIME_CLASS（class name），THREAD_PRORITY_NORMAL,0,CREATE_SUSPENDED,NULL）;调用线程
废话少说上源码，希望各位高手多多指教

**** 本内容被作者隐藏 ****]]></description>
      <category>『其他资源』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 06:10:59 +0000</pubDate>
    </item>
    <item>
      <title>改变默认的光标形状</title>
      <link>http://www.topjishu.com/thread-237-1-1.html</link>
      <description><![CDATA[在对话框的OnInitDialog()中加入代码：

HCURSOR hcur=::LoadCursorFromFile(\&quot;bkhack.ani\&quot;);           //加载动画广标
::SetClassLong(GetSafeHwnd(),GCL_HCURSOR,(LONG)hcur);


其中bkhack.ani就是光标文件，需要放置在程序的相同目录，就OK,

最后，我上 ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 05:44:14 +0000</pubDate>
    </item>
    <item>
      <title>限制mdi子框架最大化时的大小</title>
      <link>http://www.topjishu.com/thread-236-1-1.html</link>
      <description><![CDATA[原创：限制mdi子框架最大化时的大小

用ptMaxTrackSize代替prMaxSize,如下所示:
void CChildFrame::OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI)
{
　 // TOD Add your message handler code here and/or call default
　 CChildFrame::OnGetMinMaxInfo(lpMMI);
　 l ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 05:32:48 +0000</pubDate>
    </item>
    <item>
      <title>VC++动态修改对话框的大小</title>
      <link>http://www.topjishu.com/thread-235-1-1.html</link>
      <description><![CDATA[VC++动态修改对话框的大小       

//本函数使用方法： 
//第一个参数：如果是TRUE表示显示扩展的对话框，如果是FALSE,表示缩小对话框。 
//第二个参数：表示本对话框的HWND， 
//第三个参数：表示缩小后大小的控件的ID
　　void COptionDlg::ExpandBox(BOOL fExp ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 05:25:38 +0000</pubDate>
    </item>
    <item>
      <title>vc++自定义头文件 可减小程序体积!</title>
      <link>http://www.topjishu.com/thread-234-1-1.html</link>
      <description><![CDATA[vc++自定义头文件 可减小程序体积!
by：lxsky


#ifdef NDEBUG
#pragma optimize(\&quot;gsy\&quot;,on)
#pragma comment(linker,\&quot;/RELEASE\&quot;)
#ifdef _MERGE_RDATA_
#pragma comment(linker,\&quot;/merge:.rdata=.data\&quot;)
#endif
#pragma comment(linker,\&quot;/merge:.text=.data\&quot;) ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 04:54:11 +0000</pubDate>
    </item>
    <item>
      <title>vc++木马编程之CMD管道的实现</title>
      <link>http://www.topjishu.com/thread-233-1-1.html</link>
      <description><![CDATA[*****************************************************************
by:lxsky(怖客)  链接:http://www.bkhack.com
讨论或由不懂的地方请进:http://www.topjishu.com
******************************************************************
下面是一个完整的函数例子 ...]]></description>
      <category>『编程大厅』</category>
      <author>lxsky</author>
      <pubDate>Thu, 17 May 2012 04:53:29 +0000</pubDate>
    </item>
  </channel>
</rss>
