This commit is contained in:
whackx 2023-07-01 11:38:51 +02:00
parent 8635ad80bb
commit 524e084c4f
3 changed files with 10034 additions and 0 deletions

View File

@ -23,3 +23,7 @@
## Wordlist Manager
[wordlistctl](https://github.com/BlackArch/wordlistctl.git)
## All in One
[Weakpass](https://weakpass.com) provides a password generator, a hash cracker as well as bruteforce lists to download

10000
Cryptography/Hashes/pins.txt Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,30 @@
# Insecure Functions
This is an incomplete collection of potentially insecure functions found in well-known programming languages.
Look it up to avoid insecure programming pitfalls.
## PHP
### MySQL
Following functions are insecure without limit or sanitizing input
```php
mysqli_query()
mysql_query()
mysqli_prepare()
query()
prepare()
```
### Local File Inclusion
In concjunction with user input, e.g. `POST` or `GET` these functions are insecure
```php
require()
include()
require_once()
include_once()
```