Compare commits

..

4 Commits

Author SHA1 Message Date
github-actions 65d50c6a8e Bump Dockerfile tag to match release 'v0.0.1.1' 2024-01-29 20:15:12 +00:00
its-a-feature 1ec59eb1b6 updating regex checkers 2024-01-29 12:09:56 -08:00
github-actions 1b53c59fd4 Bump Dockerfile tag to match release 'v0.0.1' 2024-01-21 00:42:43 +00:00
Cody Thomas a362a4a1a0 Merge pull request #16 from MythicC2Profiles/docker_testing
Docker testing
2024-01-20 18:36:53 -06:00
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -1 +1 @@
FROM ghcr.io/mythicc2profiles/http:v0.0.1-rc1
FROM ghcr.io/mythicc2profiles/http:v0.0.1.1
+4 -2
View File
@@ -440,7 +440,7 @@ var httpc2parameters = []c2structs.C2Parameter{
DefaultValue: "https://domain.com",
ParameterType: c2structs.C2_PARAMETER_TYPE_STRING,
Required: true,
VerifierRegex: "^(http|https):\\/\\/.*[^\\/]$",
VerifierRegex: "^(http|https):\\/\\/[^\\/:]*$",
},
{
Name: "get_uri",
@@ -448,6 +448,7 @@ var httpc2parameters = []c2structs.C2Parameter{
DefaultValue: "index",
ParameterType: c2structs.C2_PARAMETER_TYPE_STRING,
Required: false,
VerifierRegex: "^[^\\/].*",
},
{
Name: "post_uri",
@@ -455,6 +456,7 @@ var httpc2parameters = []c2structs.C2Parameter{
DefaultValue: "data",
ParameterType: c2structs.C2_PARAMETER_TYPE_STRING,
Required: false,
VerifierRegex: "^[^\\/].*",
},
{
Name: "query_path_name",
@@ -462,7 +464,7 @@ var httpc2parameters = []c2structs.C2Parameter{
DefaultValue: "q",
ParameterType: c2structs.C2_PARAMETER_TYPE_STRING,
Required: false,
VerifierRegex: "^[^\\/]",
VerifierRegex: "^[^\\/].*",
},
{
Name: "proxy_host",
+1 -1
View File
@@ -5,6 +5,6 @@
"exclude_documentation_c2": false,
"exclude_agent_icons": false,
"remote_images": {
"http": "ghcr.io/mythicc2profiles/http:v0.0.1-rc1"
"http": "ghcr.io/mythicc2profiles/http:v0.0.1.1"
}
}