Moves mouse one pixel every minute to prevent auto locks and screen savers
Category: Development
Test Passwords Against Active Directory User
Tool to test password against Active Directory user. Multiple passwords can be tested by ; separating them
Usage: CheckCredentials.exe FQDN USERNAME PASSWORD1[;PASSWORD2;PASSWORD3..]
[sourcecode language=”vb”]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.DirectoryServices.AccountManagement;
using System.Diagnostics;
namespace CheckCredentials
{
class Program
{
static void Main(string[] args)
{
if (args.GetUpperBound(0) == 2)
{
foreach (string password in args[2].Split(‘;’))
{
using (PrincipalContext pc = new PrincipalContext(ContextType.Domain, args[0]))
{
// validate the credentials
bool isValid = pc.ValidateCredentials(args[1], password);
if (isValid)
{
Console.WriteLine(@"{1}@{0} has password {2}", args[0], args[1], password);
}
}
}
}
else
{
Console.WriteLine("Usage:{0} FQDN USERNAME PASSWORD1[;PASSWORD2;PASSWORD3..]", Process.GetCurrentProcess().ProcessName + ".exe");
}
}
}
}
[/sourcecode]
Attachment(s): [list-attachments]
Encrypt/Decrypt Text with System.Security.Cryptography
Encrypt/Decrypt Text with System.Security.Cryptography
Attachment(s): [list-attachments]
Command prompt with random background and foreground color on each start
- Copy RndColor.bat to “%SystemRoot%\System32”
- Run RndColor.reg
- Open a command prompt
Attachment(s): [list-attachments]
Non-standard success exit codes
Some software distribution tools do not allow custom success exit codes. This means that if a software package returns a non-standard success exit code that the deployment status might return a failure instead of a success.
With this script an installation package’s non-standard success exit codes can be translated to exit code 0 within the software distribution tool.
Example: CScript.exe Setup.vbs /Command:SomeSetup.exe /SuccessCodes:1;2;3
In this example exit code 1,2 and 3 for SomeSetup.exe will be changed to 0
Attachment(s): [list-attachments]
[sourcecode language=”vb”]
Option Explicit
On Error Resume Next
Dim strCommand
Dim strSuccessCodes
strCommand = WScript.Arguments.Named("Command")
strSuccessCodes = WScript.Arguments.Named("SuccessCodes")
If Len(Trim(strCommand)) = 0 Or Len(Trim(strSuccessCodes)) = 0 Then
WScript.Quit(1)
End If
Dim arrSuccessCodes
Dim intSuccessCode
arrSuccessCodes = Split(strSuccessCodes,";")
Dim objShell
Dim objExec
Dim intReturnCode
Set objShell = CreateObject("WScript.Shell")
Err.Clear
Set objExec = objShell.Exec(strCommand)
If Err.Number <> 0 Then
WScript.Echo "Problem with command"
WScript.Quit(1)
End If
Do While objExec.Status = 0
Call WScript.Sleep(100)
Loop
intReturnCode = objExec.ExitCode
For Each intSuccessCode In arrSuccessCodes
If IsNumeric(intSuccessCode) Then
If intReturnCode = CInt(intSuccessCode) Then
WScript.Echo "Success"
intReturnCode = 0
Exit For
End If
End If
Next
Set objExec = Nothing
Set objShell = Nothing
Call WScript.Quit(intReturnCode)
[/sourcecode]
CreateFileWithCode
This utility can be used to recreate any file at runtime.
It works by reading the input file with binaryreader and creates a function that can be called to recreate the input file.
Usage: CreateFileWithCode INPUTFILE > OUTPUTFILE
Attachment(s): [list-attachments]
[sourcecode language=”vb”]
Private Sub CreateFile()
Try
Dim objBinaryWriter As System.IO.BinaryWriter
objBinaryWriter = New System.IO.BinaryWriter(System.IO.File.Open("CreateFileWithCode.exe", System.IO.FileMode.Create))
Dim intValue As Int32
Dim arrValues() As Int32 = { _
9460301, _
3, _
4, _
65535, _
184, _
0, _
64, _
0, _
0, _
0, _
0, _
0, _
0, _
0, _
0, _
128, _
247078670, _
-855002112, _
1275181089, _
…
…
0 _
}
For Each intValue In arrValues
objBinaryWriter.Write(intValue)
Next
Catch ex As Exception
End Try
End Sub
[/sourcecode]
Dos Box Colors
Here is a table of all the combinations of dos box colors
Command Prompt with Random Color on Startup
Add REG_SZ to HKLM\SOFTWARE\Microsoft\Command Processor with name AutoRun and value of RndColor.bat
Create file RndColor.bat in %WINDIR%\System32
[sourcecode language=”plain”]
@Echo Off
Echo Loading…
SET rnd=%random%
IF %rnd% LSS 4681 GOTO 1
IF %rnd% LSS 9362 GOTO 2
IF %rnd% LSS 14043 GOTO 3
IF %rnd% LSS 18724 GOTO 4
IF %rnd% LSS 23405 GOTO 5
IF %rnd% LSS 28086 GOTO 6
IF %rnd% LSS 32767 GOTO 7
Goto END
:1
Color 1F
Goto END
:2
Color 20
Goto END
:3
Color 30
Goto END
:4
Color 4E
Goto END
:5
Color 5F
Goto END
:6
Color 80
Goto END
:7
Color 4F
Goto END
:END
CLS
[/sourcecode]
ShowReplParser
This app will parse the output of “RepAdmin.exe /ShowRepl *” and display a unique list of all the servers with errors
- First create OUT.TXT with the following command:
- RepAdmin.exe /ShowRepl * > OUT.TXT
- Then run the following to get all errors from OUT.TXT
- ShowReplParser.exe OUT.TXT
Attachment(s): [list-attachments]
IsSlowLink – Utility that returns Error Code 1 if slow link detected
IsSlowLink by Shaun Vermaak is an utility that returns Error Code 1 if slow link detected
Usage: IsSlowLink.exe HOSTNAMEORADDRESS MAXROUNDTRIPTIME
Attachment(s):
[list-attachments]