-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added support for applying and simplifying rules using the HCRE library - Introduced new transformation modes `rule-apply` and `rule-simplify` - Documentation updates - Changed URL processing to be kinder to hosts within reason to reduce potential "timeout" errors
- Loading branch information
Showing
9 changed files
with
141 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,15 @@ | ||
# Security Documentation for Password Transformation Tool (PTT) | ||
|
||
## Notices | ||
- No additional notes. | ||
- As of `v0.4.1`, the HCRE library is included in the project. This library is | ||
used to support complex rule features and has been locked to the following | ||
versions: | ||
- launchpad.net/hcre v0.0.0-20241130145909-c832018180b1 h1:lfPqGETHlSypBMeJtjMAFTthkaE/Wkxgu1vzYpwKdEI= | ||
- launchpad.net/hcre v0.0.0-20241130145909-c832018180b1/go.mod h1:Dq78e8vypvdrOQt+VImkJcRq/6GHM1XGvO9/T1nr18M= | ||
|
||
## Notes: | ||
- `pkg/utils/utils.go:9` use of `crypto/rand` over `math/rand` is not needed in this module. | ||
|
||
## Last SAST Scan: | ||
- `11/08/2024` - `v0.4.0` | ||
- `10/16/2024` - `v0.3.7` | ||
- `v0.4.1` | ||
- Included `hcre` library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
module github.com/jakewnuk/ptt | ||
|
||
go 1.23.0 | ||
go 1.23.1 | ||
|
||
toolchain go1.23.2 | ||
|
||
require ( | ||
golang.org/x/net v0.24.0 | ||
golang.org/x/text v0.14.0 | ||
) | ||
|
||
require launchpad.net/hcre v0.0.0-20241130145909-c832018180b1 // indirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters