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
| using System; | |
| using System.Text; | |
| using sNasa.text; | |
| using nasaspacesec; | |
| using System.Security.Cryptography; | |
| namespace PasswordSecurity | |
| { | |
| class InvalidHashException : Exception | |
| { |
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
| ╭━╮╱╭┳━━━┳━━━┳━━━╮╭╮╱╱╱╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╭╮╭╮ | |
| ┃┃╰╮┃┃╭━╮┃╭━╮┃╭━╮┃┃┃╱╱╱╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱┃┃┃┃ | |
| ┃╭╮╰╯┃┃╱┃┃╰━━┫┃╱┃┃┃┃╱╭━━╮╭━━╮┃┃╭╮╭━━╮╭━╯┃┃┃ | |
| ┃┃╰╮┃┃╰━╯┣━━╮┃╰━╯┃┃┃╱┃┃━┫┃╭╮┃┃╰╯╯┃┃━┫┃╭╮┃╰╯ | |
| ┃┃╱┃┃┃╭━╮┃╰━╯┃╭━╮┃┃╰╮┃┃━┫┃╭╮┃┃╭╮╮┃┃━┫┃╰╯┃╭╮ | |
| ╰╯╱╰━┻╯╱╰┻━━━┻╯╱╰╯╰━╯╰━━╯╰╯╰╯╰╯╰╯╰━━╯╰━━╯╰╯ | |
| $~> timothy.o.johnson@nasa.gov:toj122163 | |
| $~> shanna.e.ohara@nasa.gov:mark05 | |
| $~> sherry.r.johnson@nasa.gov:pma65srj |
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
| // Securing against Header Injection | |
| // CC: SecurityGab/Dengisan.nl | |
| foreach($_POST as $key => $value){ | |
| $_POST[$key] = _cleaninjections(trim($value)); | |
| } |
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
| Input Reflected Request&Response | |
| < POST /Core/Security/Login?ptt7600efbd= HTTP/1.1 | |
| < Host: beheervastmobiel-acc.odido.nl | |
| < User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 | |
| < Content-Type: application/x-www-form-urlencoded | |
| < Cookie: .AspNetCore.Antiforgery.Rl6OMZz-eJ8=CfDJ8CAQSoEe-i9LgXoOjiei_gSONg-LkAGG62CElNKLwP4R-ROFTrCGsAjTL2YZHyqK5igBnS5y7JpmJw0L5wnurzK6UnUS2isIrea-By3NTkzUYiaY9aQBW9BDfoEz-sOoMga7xC1KExC8oT-XxOJF92o | |
| < Content-Length: 245 | |
| < | |
| < __RequestVerificationToken=CfDJ8CAQSoEe-i9LgXoOjiei_gQM4tqEbyn5BVc7zGnHTtWbTDCS45peJ60Xsh0pmeJYaBQt5D6qpGA6rYut8oquz4ZSpvG7GRhBzDQHgY7NzNQUmwb0AP9MmvkdVdMFU945IoHv5zD9s_IdSLlD8F0wAQs&Password=Secure123456%24&Username=1d3d2d231d2dd4ptt2cef4e3d%60 |
OlderNewer