Tag: vb
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
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
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”)
Related posts
Visual Basic 2008 Lernen Teil 3 Neue Form & Label Ändern
by Installer on Apr.03, 2010, under Vbscript
www.basic-coding.com wünscht ihnen viel Spaß beim Ansehen
Related posts
Visual Basic 2008 Lernen Teil 2 Message Box
by Installer on Apr.03, 2010, under Vbscript
www.basic-coding.com wünscht ihnen viel Spaß beim Ansehen
Related posts
How to make a virus maker in vb 6.0 (TUTORIAL)
by Installer on Apr.03, 2010, under Vbscript
just a little tutorial how to make a virus maker
Related posts
How to write vbscript Viruses / Trojan Horses
by Installer on Apr.03, 2010, under Vbscript
This video will discuss the principal of “Script Wrapping” using the example of a simple vbscript / WMI based Trojan Horse Virus. This is presented for educational purposes ONLY and should not be used in malicious fashion. The vbscript code used in this lesson can be found over here: jaysn.blogspot.com
Related posts
how to download visual basic 6 portable
by Installer on Apr.03, 2010, under Vbscript
How to download vb6 portable link: www.bigfoooooot33.webs.com
Related posts
How to make a Html editor with Visual basic 2008
by Installer on Apr.02, 2010, under Vbscript
Please visit my website @ www.nickmeow.tk Here is the code for the form1.vb Public Class Form1 Private Sub openbrowsertoolstripmenuitem_click(byval sender As System.Object, byval e As System.eventargs) Handles openbrowsertoolstripmenuitem.Click form2.show() End Sub Private Sub textbox1_textchanged(byval sender As System.Object, byval e As System.eventargs) Handles textbox1.textchanged Form2.webbrowser1.documenttext = textbox1.Text End Sub Private Sub button1_click(byval sender As System.Object, byval e As System.eventargs) Handles Button1.Click Dim request As System.Net.httpwebrequest = System.Net.httpwebrequest.Create(textbox2.Text) Dim response As System.Net.httpwebresponse = request.getresponse() Dim sr As System.IO.streamreader = New System.IO.streamreader(response.getresponsestream()) Dim sourcecode As String = sr.readtoend() textbox1.Text = sourcecode End Sub End Class Please comment rate and subscirbe add your suggestions in the comments for my next video if you need help comment and ill help you
Related posts
Visual Basic – Math Expression Calculator
by Installer on Apr.02, 2010, under Vbscript
Download Interop.msscriptcontrol here: www.mediafire.com Download Math Expression Calculator visual basic project: www.mediafire.com Or copy the code for the calculate button_click: Dim a as new msscriptcontrol.scriptcontrol ‘ we set a to be our msscriptcontrol , u can set whatever you want like Dim hewh as new … a.language = “vbscript” ‘ language will be vbscript , set some other like javascript and it will still work try label1.text = a.eval(textbox1.text)’ label1.text will be the result , and the expression will be textbox1.text catch msgbox(“error”) ‘ if the expression cannot be calculated , msgbox pops up end try PLS subscribe,rate and comment! Video size: 15.1 MB