10 lines
425 B
Bash
10 lines
425 B
Bash
#!/bin/bash
|
|
# Check weval-passwords.php
|
|
ls -la /var/www/html/api/weval-passwords.php 2>/dev/null
|
|
# It's probably protected, can we see the exported function?
|
|
cat /var/www/html/api/weval-passwords.php 2>/dev/null | head -15
|
|
echo ""
|
|
# Vault creds
|
|
ls /opt/wevads/vault/*credentials* /opt/wevads/vault/WEVAL* 2>/dev/null | head -3
|
|
grep -i "yacine\|yace\|weval_user" /opt/wevads/vault/credentials*.html.gold 2>/dev/null | head -3
|