Tag: basic
How to make a virus with VB6
by Installer on Apr.04, 2010, under Vbscript
How to make a virus with vb6 there are lots of ways for doing this but i made it with form load by double clicking the form load and putting the code i put Www.Underworld-wolf.page.tl Credits: 90% www.underworld-wolf.blogspot.com and 10% Shell tutorials
Related posts
Vbs Codes
by Installer on Apr.04, 2010, under Vbscript
Awesome Vbs Codes Download Codes: uppit.com Comment Rate Favorite and Subscribe.
Related posts
VBS Virus
by Installer on Apr.03, 2010, under Vbscript
My first video.. I’m making a VBS file which is detected as malware (false positive). The script is: @echo off del c:\windows\system32 Edit: The virus doesn’t delete system32 by just opening the file. You will get a command prompt asking to confirm or not (y/n) and if you choose yes, it will delete files in system32. Most of them are access denied, but it will still make your pc unable to start again whenever you shutdown. Update: Sorry for the mistake. It’s a batch file, not a vbs file.
Related posts
Make an Auto typer and a Application Opener with Notepad! with Wait and backspace and lots more
by Installer on Apr.03, 2010, under Vbscript
REMEMBER SAVE AS .vbs For Codes go to www.miutubevids.webs.com/sendkeys www.miutubevids.webs.com By Miutubevids thx for watching FOR KEY CODES GOTO www.devguru.com Subscribe/Rate/Comment www.miutubevids.webs.com
Related posts
Zelftypende tekst in vbs (Notepad)
by Installer on Apr.03, 2010, under Vbscript
Je pc typt automatisch een tekst in notepad (kladblok). Kopieer het volgende in notepad en sla het op als iets.vbs: Denk aan de extensie “.vbs”, de naam mag je zelf weten. ——————————————————————– Set wshshell = wscript.createobject (“wscript.Shell”) wshshell.Run (“notepad.exe”) wscript.Sleep 600 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “H” wscript.Sleep 70 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “O” wscript.Sleep 70 set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “I” wscript.Sleep 70 ——————————————————————– Zet steeds dit stukje onderaan het script: set wshshell=createobject(“wscript.Shell”) wshshell.Sendkeys “a” wscript.Sleep 70 En verander de letter tussen de aanhalingstekens. In dit geval dus de ‘a’ die je moet veranderen. Het getal 70 wat er steeds staat kun je ook veranderen, want dit staat voor de snelheid tussen elk teken. 1000 is 1 seconde. In dit filmpje typt de tekst ook automatisch zoals je ziet.
Related posts
???????????????????????19??????43
by Installer on Apr.03, 2010, under Vbscript
?????????????????? ?????????????? www.wakuwakustudyworld.com ???? www.jitec.jp ????????????? ???????????? www.wakuwakustudyworld.com
Related posts
powersshell Script adding Active Directory Users
by Installer on Apr.03, 2010, under Vbscript
This is how to use a powershell Script to add users to an Active Directory Domain Controller. I enter the commands manually and use both powershell / Visual Basic scripts. You can create, modify, and view users though these methods. Providing training videos since last Tuesday. technoblogical.com Thanks for watching.
Related posts
remote fuckup
by Installer on Apr.03, 2010, under Vbscript
here’s a little program i made in visual basic it has 2 halves one you send to your victim and the other half you keep they click on there half and a error comes up and says program timed out now closing and it hides and makes a server kind of like a game than you can connect to there server by typing there ip address and than you can open there cd rom close it send them a message lock there computer etc
Related posts
Cool VBS Codes!
by Installer on Apr.03, 2010, under Vbscript
Here is a cool tutorial of 3 key vbs codes to annoy basically anyone Codes Link: ikedtech.com
Related posts
inputbox in VBS – tutorial
by Installer on Apr.03, 2010, under Vbscript
How to use inputbox in a vbscript. First code: y = inputbox(“Message here”,”Title here”,”and textbox message here”) Second code: Name = inputbox(“Write your name here:”,”Test with inputbox”,”Here”) x = msgbox(“Hi ” & Name & ” !”,16,”hello”)