Skip to content

Commit fdad504

Browse files
authored
Merge pull request #7 from ScotDex/codex/update-readme-with-ethical-disclaimer
Add ethical use disclaimer
2 parents 22a54e0 + 79ec9c0 commit fdad504

File tree

10 files changed

+18
-2
lines changed

10 files changed

+18
-2
lines changed

Pen-Test/Basic-Brute-Force.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
<#
23
.SYNOPSIS
34
Attempts to brute force the password for a specified user by testing a list of passwords.

Pen-Test/File-Generator.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
<#
23
.SYNOPSIS
34
This script creates a random directory under C:\Windows\System32.

Pen-Test/Key-Logger.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
<#
23
.SYNOPSIS
34
A simple keylogger script that logs key presses to a specified file.

Pen-Test/Site-Stress-Test-While.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
<#
23
.SYNOPSIS
34
This script performs a stress test on a specified web site by sending multiple concurrent requests in a loop.

Pen-Test/Site-Stress-Test.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
$targetURL = "tsg.com"
23
$requestCount = 10000
34
$MaxThreads = 505

Pen-Test/brute.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
# Target Information
23
$TargetURL = ""
34
$LoginEndpoint = "/login"

Pen-Test/network-probe.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
<#
23
.SYNOPSIS
34
Gathers and displays basic network information.

Pen-Test/payload.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
$baseUrl = ""
23
$payloads = @(
34
"<script>alert(1)</script>"

Pen-Test/ping-scanner.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# For authorized testing only. See README.md for ethical use guidelines.
12
param (
23
[string]$ipAddress = "127.0.0.1",
34
[int[]]$ports = @(80, 443, 8080)
@@ -9,5 +10,4 @@ foreach ($port in $ports) {
910
Write-Output "Port $port is open on $ipAddress"
1011
} else {
1112
Write-Output "Port $port is closed on $ipAddress"
12-
}
13-
}
13+
}}

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# The Script Lab
2+
3+
This repository provides a collection of PowerShell and related scripts for security research and system management. Some scripts are designed for penetration-testing scenarios.
4+
5+
## Ethical Use Notice
6+
7+
Use these scripts **only** on systems that you own or where you have been granted explicit, written permission to perform testing. Unauthorized or malicious use of these scripts may violate the law and ethical guidelines. The maintainers assume no responsibility for misuse.
8+

0 commit comments

Comments
 (0)