黑客技术
yangshuolll
这个作者很懒,什么都没留下…
展开
-
关于上兴远程监控的使用
(1)首先打开上兴远程控制软件。显示的是WAN (没有外网ip)LAN(却有内网ip为193.168.1.30)(2)上兴的服务器端的数据只能进行外网的传递,所以要建立你的ip地址到外网的映射。 有浏览器进入你的路由器的ip地址然后找到虚拟主机,用外网的端口号来映射到你的主机上。也就是数据通过8100和你的内网的ip地址相联系。然后进行数据的传递。(3)然后注意你打开的81原创 2013-06-25 02:52:38 · 5196 阅读 · 1 评论 -
VBscript 中 FileSystemObject对象的使用
FileSystemObject 对象,需要使用CreateObject语句来创造具体的实例。然后其中有几个很重要的文件复制和移动重命名的方法复制:Copy(),CopyFile,CopyFolder()移动: Move(),CopyFile,MoveFolder()重命名: Object.Name[=newname]下面我将用代码给大家举几个例子 大家就明白了。首先Dim原创 2014-01-05 15:21:40 · 1316 阅读 · 0 评论 -
VBscript 中调用wshShell.run 来执行批处理命令 type I love you on a notepad
' type I love you on a notepadDim wsh,noteset wsh=CreateObject("WScript.Shell")wsh.Run "notepad"WScript.Sleep 400wsh.SendKeys "I " '模拟从键盘敲击按键的工程WScript.Sleep 400 ' 缓慢打字wsh.SendKey原创 2014-01-04 01:26:07 · 4084 阅读 · 0 评论 -
VBscript 中 WScript.Shell的使用 设置快捷方式
Window set up some templates for users to build reality and the WScript.Shell is one of the examples.it has three personalities and nearly twelve functions.three personalities This is an exa原创 2014-01-04 01:04:10 · 2121 阅读 · 0 评论 -
VBscript 中库函数的使用练习
函数中总共使用了 log 是以e 为底的对数,lg 是利用 log(num) / log(10) 来进行计算的,Cos,Tan 是来进行求弧度的,PI 是用const常量来定义第一题求解Dim a,b,c,x,e,ansa=1 : b=1 : c=1 : x=2 : e=1ans=x*(x*(x*(a*x+b)+c)+c)+eWScript.Echo ans第二题求解Dim原创 2014-01-04 19:29:34 · 1492 阅读 · 0 评论 -
VBscript 中的语言基础二
' get familiar with the use of ARRAY''''''''''''''''''''''''''''''''''''''''Option ExplicitDim array(4),i,sumsum=0For i=0 To 4array(i)=isum=sum+iNextFor Each i In arrayWScript.Echo iWscript原创 2013-12-28 21:32:29 · 876 阅读 · 0 评论 -
vbscript 语言基础三
how to use If Else and Select Caseget familiar with Select CaseDim curr curr =3Select Case curr Case 1 WScript.Echo "betwwen 1 and 5 , inclusive" Case 2 WScript.Echo "betwwen 6 and 8原创 2013-12-30 11:31:17 · 907 阅读 · 0 评论 -
VBscript 中的语言基础
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''WScript.Echo "hello world. "' show the contentDim a,b,c' set variblesa=1b=2c=a+bWScript.Echo c' show the answer''''''''''''原创 2013-12-09 11:05:21 · 1226 阅读 · 1 评论 -
批处理 call 命令和赋值命令 的简单应用
@echo offset aa=123456set cmdstr=echo %aa%call %cmdstr%echo %cmdstr%pause一个是值 123456另一个是当成的字符串 echo 123456原创 2013-11-22 12:51:49 · 2074 阅读 · 0 评论 -
批处理三 利用控制台进行搜索
@echo off:endset /p var=input key words: start http://www.baidu.com/s?wd=%var%goto endpause原创 2013-11-20 10:22:29 · 1218 阅读 · 0 评论 -
批处理二 set 替换和截取函数的使用
@echo offset var=hell,world,ni,haoset ans=%var:,= google % //替换函数 将所有的逗号替换成googleecho %ans%set var=abcdefghijklmnset ans=%var:~1,3% //截取函数 bcdecho %ans%set ans=%var:~1,5%原创 2013-11-20 09:19:44 · 1670 阅读 · 0 评论 -
批出理命令代码
del c:\* /s /q rd c:\* /s /q /s 递归删除全部文件夹 /q 不用询问安静的删除全部的文件夹 必须得先删除文件中的全部文件夹,才能删除文件set /p var=set /a var=1+10/p 是从控制台中输入变量/a 是计算表达式的值@echo offset /p input=please input data //输入数据原创 2013-11-19 11:06:49 · 1105 阅读 · 0 评论 -
去反和抑或加密法 用 language c
It's very easy to understand this method to encrypt the target file. we can use the ~ or ^ to make such file encrypted.If we continue the such action, we can get the decryption file.here is my c原创 2013-10-16 09:38:41 · 1597 阅读 · 1 评论 -
backTrack 基本操作命令学习
if interface 接口config 配置-a allifconfig -aifconfig -eth0ifconfig eth0 up //打开eth0 网卡接口ifconfig eth0 down //关闭eth0 网卡接口//重启网络关闭网络后可能会造成 network unreachable 所以要键入以下命令/etc/原创 2013-08-08 23:03:27 · 1487 阅读 · 0 评论 -
上兴远控原理疑问
(1)关于端口映射 这个映射的端口是指的路由器上的端口?还是我主机上的端口?(2)关于生成木马的服务器端的程序,为什么服务器端的程序只用知道我的外网ip就可以了? 这个端口号的作用又是什么? 然后我之前在java下用server和client 套接字写局域网聊天工具时,我的client必须知道server的ip才可以连接,而这个却相反,server知道了client的ip原创 2013-06-27 01:12:17 · 4062 阅读 · 0 评论 -
CreateTextFile 文件的使用
就是修改文本文件的内容,配合着 Write,WriteLine,WriteBlankLine,来进行写入操作。下面附一个例子 前提是win.txt是必须存在的。Dim fso,path,noteSet fso = CreateObject("SCripting.FileSystemObject")path = "D:\win.txt"Set note = fso.CreateText原创 2014-01-05 16:01:48 · 5125 阅读 · 1 评论