mirror of
				https://github.com/mgeeky/Penetration-Testing-Tools.git
				synced 2025-11-04 04:55:26 +01:00 
			
		
		
		
	Added Create-Lnk.ps1
This commit is contained in:
		
							
								
								
									
										24
									
								
								red-teaming/Create-Lnk.ps1
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										24
									
								
								red-teaming/Create-Lnk.ps1
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,24 @@
 | 
			
		||||
param (
 | 
			
		||||
	[Parameter(Mandatory=$true)]
 | 
			
		||||
	[string]
 | 
			
		||||
	$TargetPath,
 | 
			
		||||
 | 
			
		||||
	[Parameter(Mandatory=$true)]
 | 
			
		||||
	[string]
 | 
			
		||||
	$OutputLnk,
 | 
			
		||||
 | 
			
		||||
	[Parameter(Mandatory=$false)]
 | 
			
		||||
	[string]
 | 
			
		||||
	$Arguments = "",
 | 
			
		||||
 | 
			
		||||
	[Parameter(Mandatory=$false)]
 | 
			
		||||
	[string]
 | 
			
		||||
	$WorkingDirectory = ""
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
$WshShell = New-Object -comObject WScript.Shell
 | 
			
		||||
$Shortcut = $WshShell.CreateShortcut($OutputLnk)
 | 
			
		||||
$Shortcut.TargetPath = $TargetPath
 | 
			
		||||
$Shortcut.Arguments = $Arguments
 | 
			
		||||
$Shortcut.WorkingDirectory = $WorkingDirectory
 | 
			
		||||
$Shortcut.Save()
 | 
			
		||||
							
								
								
									
										2
									
								
								red-teaming/README.md
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							
							
						
						
									
										2
									
								
								red-teaming/README.md
									
									
									
									
									
										
										
										Normal file → Executable file
									
								
							@@ -66,6 +66,8 @@ IEX (New-Object IO.StreamReader(New-Object IO.Compression.GzipStream($s, [IO.Com
 | 
			
		||||
 | 
			
		||||
- **`Count-PrivilegedGroupMembers.ps1`** - Counts number of members in predefined (or augumented from an input file) list of privileged, sensitive groups in Active Directory. Purely for statistics and overview purposes.
 | 
			
		||||
 | 
			
		||||
- **`Create-Lnk.ps1`** - Uttertly simple script to create LNK files. Handy when one needs to create some dodgy shortcuts acting as yet another stage in code execution step.
 | 
			
		||||
 | 
			
		||||
- **`delete-warning-div-macro.vbs`** - VBA Macro function to be used as a Social Engineering trick removing "Enable Content" warning message as the topmost floating text box with given name. ([gist](https://gist.github.com/mgeeky/9cb6acdec31c8a70cc037c84c77a359c))
 | 
			
		||||
 | 
			
		||||
- **`Disable-Amsi.ps1`** - Tries to evade AMSI by leveraging couple of publicly documented techniqus, but in an approach to avoid signatured or otherwise considered harmful keywords. 
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user