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
| // Azure Function for Processing Payment (HTTP Trigger) | |
| [Function("ProcessPayment")] | |
| public async Task<IActionResult> ProcessPayment( | |
| [HttpTrigger(AuthorizationLevel.Function, "post")] HttpRequestData req, | |
| FunctionContext executionContext) | |
| { | |
| var logger = executionContext.GetLogger("ProcessPayment"); | |
| var requestBody = await new StreamReader(req.Body).ReadToEndAsync(); | |
| var paymentRequest = JsonSerializer.Deserialize<PaymentRequest>(requestBody); |
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
| import os | |
| import pathlib | |
| from tqdm import tqdm | |
| path = "./hs" | |
| files = [f for f in os.listdir(path) if pathlib.Path(f).suffix == ".cap"] | |
| for file in tqdm(files): | |
| filename = pathlib.Path(file).stem | |
| os.system(f'sudo /usr/lib/hashcat-utils/cap2hccapx.bin {path}/{file} {path}/{filename}.hccap') |
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
| [ | |
| { | |
| "UserSerialNumber": "4de6bb8c-8494-4028-ad79-4f4d9e62e512", | |
| "UserPositionId": 0, | |
| "OperationName": "ISilverlightService.InitUserInfo", | |
| "RequestId": "bd32e59c-4217-449f-b193-6bbb780aa258", | |
| "RetryNumber": 0, | |
| "Timestamp": "2022-04-21T00:28:35.0018061+03:00", | |
| "ServiceUserNumber": "8800078", | |
| "Source": "Client 1.32 (Staging)", |