KitbogaCodeville / kitboga-codeville

Kitboga Codeville Repository
http://kitboga.com/
67 stars 18 forks source link

Text popup and website popup program. #7

Closed DeputyRipper closed 6 years ago

DeputyRipper commented 6 years ago

This is how to make the vbs text popup program.

Code-

Write this code first- X=MsgBox("Message Description",0+16,"Title")

  1. You can write any number from 1,2,3 or 4 instead of 0 (before the '+' symbol) Below is the meaning of these numbers:

0 = OK Button, 1 = OK / Cancel Button, 2 = Abort / Retry / Ignore Button, 3 = Yes / No / Cancel Button, 4 = Yes / No Button, 5 = Retry / Cancel Button

  1. You can write 32 or 48 or 64 instead of 16. Below is the meaning of each number:

16 = Critical Icon, 32 = Help Icon, 48 = Warning Icon, 64 = Information Icon, Rename it to what you want and make it .vbs instead of .txt

Now this is how you make the program popup

Option Explicit Dim ie

Set ie = CreateObject("InternetExplorer.Application")

ie.Navigate "website link" ie.Visible=1 ie.Toolbar=0 ie.StatusBar=0

INTERNET EXPLORER LINKS ONLY!!! Same applies here with naming it what you want with .vbs instead of text.

You could make some of these repeats and annoy the hell out of a scammer because it can only be closed with going to the original process in task manager. You could make a shortcut of it and change the icon, for example, you could have it be the nudes folder shortcut but instead opens up to file infected being on screen with it being harder to close. You could annoy the hell out of a scammer with that. And maybe you could have the control panel open up to the banzi buddy website or something like that.

LlemonDuck commented 6 years ago

This is good information, but not suitable for a pull request. Until it is implemented on an up-to-date fork, it won't be accepted.